Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Customer ¶
type Customer interface { GetById(id string) (entity.Customer, error) GetByUsername(username string) (entity.Customer, error) GetByEmailAndPassword(email string, password string) (entity.Customer, error) // add limit and offset GetAll() ([]entity.Customer, error) Create(event entity.Customer) error Update(event entity.Customer) error Delete(id string) error }
Click to show internal directories.
Click to hide internal directories.