sprechstunden-go/models/course.go

13 lines
202 B
Go
Raw Permalink Normal View History

2022-08-29 20:58:19 +00:00
package models
type Course struct {
Id int
Name string
}
type CourseRepository interface {
FindByName(name string) (Course, error)
GetAll() ([]Course, error)
FindById(id int) (Course, error)
}