(ctx context.Context, plate domain.Plate)
| 28 | } |
| 29 | |
| 30 | func (p *plateRepository) CreatePlate(ctx context.Context, plate domain.Plate) error { |
| 31 | return p.dao.CreatePlate(ctx, plate) |
| 32 | } |
| 33 | |
| 34 | func (p *plateRepository) ListPlate(ctx context.Context, pagination domain.Pagination) ([]domain.Plate, error) { |
| 35 | plates, err := p.dao.ListPlate(ctx, pagination) |
nothing calls this directly
no test coverage detected