13 lines
212 B
Go
13 lines
212 B
Go
// course
|
|
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)
|
|
}
|