public ClientsOfCarWashViewsController(
     IClientsOfCarWashServices clients,
     IDetailingsServises detailingsView,
     IOrderServices order,
     IOrderServicesCarWashServices orderServices,
     ICarMarkServices carMark,
     ICarBodyServices carBody,
     IClientsGroupsServices clientsGroupsServices,
     IClientInfoServices clientInfo,
     IGroupWashServices groupWashServices,
     IBrigadeForTodayServices brigade,
     IServisesCarWashOrderServices servisesCarWash,
     ICarJoinClientServices carJoinClient,
     IRemoveClient removeClient,
     ITireStorageServices tireStorageServices,
     IPriceTireFittingAdditionalServices priceTireFittingAdditionalServices,
     IWageModules wageModules)
 {
     _services            = clients;
     _detailings          = detailingsView;
     _orderServices       = order;
     _orderServicesInsert = orderServices;
     _carMark             = carMark;
     _carBody             = carBody;
     _clientsGroups       = clientsGroupsServices;
     _clientInfo          = clientInfo;
     _groupWashServices   = groupWashServices;
     _brigade             = brigade;
     _servisesCarWash     = servisesCarWash;
     _carJoinClient       = carJoinClient;
     _removeClient        = removeClient;
     _tireStorageServices = tireStorageServices;
     _priceTireFittingAdditionalServices = priceTireFittingAdditionalServices;
     _wageModules = wageModules;
 }
 public ClientModules(IUnitOfWork unitOfWork, AutomapperConfig automapperConfig, IClientsOfCarWashServices clientsOfCarWashServices, IClientInfoServices clientInfo)
 {
     _unitOfWork       = unitOfWork;
     _automapperConfig = automapperConfig;
     _clientsOfCarWash = clientsOfCarWashServices;
     _clientInfo       = clientInfo;
 }
Example #3
0
 public ClientInfoController(IClientInfoServices clientInfo, IClientsOfCarWashServices clientsOfCarWash,
                             IClientsGroupsServices clientsGroups, IRemoveClient removeClient)
 {
     _clientInfo       = clientInfo;
     _clientsOfCarWash = clientsOfCarWash;
     _clientsGroups    = clientsGroups;
     _removeClient     = removeClient;
 }
Example #4
0
 public CarJoinClientServices(
     IClientsOfCarWashServices clientsOfCarWash,
     IClientInfoServices clientInfo,
     IOrderServicesCarWashServices orderServicesCarWash)
 {
     _clientInfo           = clientInfo;
     _clientsOfCarWash     = clientsOfCarWash;
     _orderServicesCarWash = orderServicesCarWash;
 }
 public OrderColorServices(
     IClientInfoServices clientInfo,
     IPriceColorService priceColor,
     IGroupColorServeses groupColor,
     IOrderServicesCarWashServices orderServices,
     IColorServices colorServices,
     ICompany сompany)
 {
     _clientInfo    = clientInfo;
     _priceColor    = priceColor;
     _groupColor    = groupColor;
     _orderServices = orderServices;
     _colorServices = colorServices;
     _сompany       = сompany;
 }
 public OrderCarpetWashingController(
     IOrderCarpetWashingServices orderCarpetWashing,
     IBrigadeForTodayServices brigadeForTodayServices,
     IDetailingsServises detailings,
     IOrder order,
     IWageModules wageModules,
     IClientInfoServices clientInfo,
     IClientJoinOrderCarpetWashing clientJoinOrderCarpetWashing,
     IOrderServicesCarWashServices orderServicesCarWash,
     IPaymentState paymentState,
     IEmployeesFacade employeesFacade)
 {
     _orderCarpetWashingServices = orderCarpetWashing;
     _brigadeForToday            = brigadeForTodayServices;
     _detailings           = detailings;
     _order                = order;
     _wageModules          = wageModules;
     _clientInfo           = clientInfo;
     _orderCarpetWashing   = clientJoinOrderCarpetWashing;
     _orderServicesCarWash = orderServicesCarWash;
     _paymentState         = paymentState;
     _employeesFacade      = employeesFacade;
 }
Example #7
0
 public ClientJoinOrderCarpetWashing(IOrderCarpetWashingServices orderCarpetWashing, IClientInfoServices clientInfoServices)
 {
     _orderCarpet = orderCarpetWashing;
     _clientInfo  = clientInfoServices;
 }
 public RemoveClient(IUnitOfWork unitOfWork, IClientInfoServices clientInfoServices, IClientsOfCarWashServices clientsOfCarWash)
 {
     _unitOfWork       = unitOfWork;
     _clientInfo       = clientInfoServices;
     _clientsOfCarWash = clientsOfCarWash;
 }