Beispiel #1
0
 public async Task <ActionResult <CarWashServiceShortModel> > DeleteCarWashServicePrice(int serviceId) => await Exec(async operation =>
 {
     VerifyUser(UserRole.Company);
     var service = await companyProfileService.DeleteCarWashService(operation, serviceId);
     return(new CarWashServiceShortModel().ToModel(service));
 });