コード例 #1
0
 public async Task <CarWashServiceShortEntity> DeleteCarWashService(IOperation operation, int id)
 {
     if (!await carWashServiceStore.IsExist(operation, id))
     {
         throw new Exception(ExceptionMessage.CarWashServicePriceIsNotExist);
     }
     return(await carWashServiceStore.Delete(operation, id));
 }