create method
Implementation
Future<ResponseItemDTO> create({PriceGroupBody? priceGroup}) async {
return await _repository!.create(
priceGroup: priceGroup,
);
}
Future<ResponseItemDTO> create({PriceGroupBody? priceGroup}) async {
return await _repository!.create(
priceGroup: priceGroup,
);
}