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