Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CreateDTO ¶
type Payment ¶
type Repository ¶
type Repository interface { Count(ctx context.Context) (uint, error) GetAll(ctx context.Context) ([]*Payment, error) GetPaginated(ctx context.Context, limit, offset int, sortBy []string) ([]*Payment, error) GetByID(ctx context.Context, id uint) (*Payment, error) Create(ctx context.Context, payment *Payment) error Update(ctx context.Context, payment *Payment) error Delete(ctx context.Context, id uint) error }
Click to show internal directories.
Click to hide internal directories.