Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EmployeeRepository ¶
type EmployeeRepository interface {
Create(context.Context, *models.Employee) error
Delete(context.Context, int) error
Update(context.Context, *models.Employee) error
GetAll(context.Context) ([]*models.Employee, error)
GetByID(context.Context, int) (*models.Employee, error)
}
EmployeeRepository ...
Click to show internal directories.
Click to hide internal directories.