(ctx context.Context, plate domain.Plate)
| 10 | |
| 11 | type PlateRepository interface { |
| 12 | CreatePlate(ctx context.Context, plate domain.Plate) error |
| 13 | ListPlate(ctx context.Context, pagination domain.Pagination) ([]domain.Plate, error) |
| 14 | UpdatePlate(ctx context.Context, plate domain.Plate) error |
| 15 | DeletePlate(ctx context.Context, plateId int64, uid int64) error |
no outgoing calls
no test coverage detected