public SalonsController(
     ISalonsService salonsService,
     ICategoriesService categoriesService)
 {
     this.salonsService     = salonsService;
     this.categoriesService = categoriesService;
 }
 public SalonsController(
     ISalonsService salonsService,
     ISalonServicesService salonServicesService,
     IAppointmentsService appointmentsService)
 {
     this.salonsService        = salonsService;
     this.salonServicesService = salonServicesService;
     this.appointmentsService  = appointmentsService;
 }
Exemple #3
0
 public AppointmentsController(
     UserManager <ApplicationUser> userManager,
     IAppointmentsService appointmentsService,
     ISalonServicesService salonServicesService,
     IDateTimeParserService dateTimeParserService,
     ISalonsService salonsService)
 {
     this.userManager           = userManager;
     this.appointmentsService   = appointmentsService;
     this.salonServicesService  = salonServicesService;
     this.dateTimeParserService = dateTimeParserService;
     this.salonsService         = salonsService;
 }
Exemple #4
0
 public SalonsController(
     ISalonsService salonsService,
     ICategoriesService categoriesService,
     ICitiesService citiesService,
     IServicesService servicesService,
     ISalonServicesService salonServicesService,
     ICloudinaryService cloudinaryService)
 {
     this.salonsService        = salonsService;
     this.categoriesService    = categoriesService;
     this.citiesService        = citiesService;
     this.servicesService      = servicesService;
     this.salonServicesService = salonServicesService;
     this.cloudinaryService    = cloudinaryService;
 }
Exemple #5
0
 public SalonsSimpleListViewComponent(ISalonsService salonsService)
 {
     this.salonsService = salonsService;
 }