コード例 #1
0
 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;
 }
コード例 #2
0
 public ClientModules(IUnitOfWork unitOfWork, AutomapperConfig automapperConfig, IClientsOfCarWashServices clientsOfCarWashServices, IClientInfoServices clientInfo)
 {
     _unitOfWork       = unitOfWork;
     _automapperConfig = automapperConfig;
     _clientsOfCarWash = clientsOfCarWashServices;
     _clientInfo       = clientInfo;
 }
コード例 #3
0
 public ClientInfoController(IClientInfoServices clientInfo, IClientsOfCarWashServices clientsOfCarWash,
                             IClientsGroupsServices clientsGroups, IRemoveClient removeClient)
 {
     _clientInfo       = clientInfo;
     _clientsOfCarWash = clientsOfCarWash;
     _clientsGroups    = clientsGroups;
     _removeClient     = removeClient;
 }
コード例 #4
0
 public CarJoinClientServices(
     IClientsOfCarWashServices clientsOfCarWash,
     IClientInfoServices clientInfo,
     IOrderServicesCarWashServices orderServicesCarWash)
 {
     _clientInfo           = clientInfo;
     _clientsOfCarWash     = clientsOfCarWash;
     _orderServicesCarWash = orderServicesCarWash;
 }
コード例 #5
0
 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;
 }
コード例 #6
0
 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;
 }
コード例 #7
0
 public ClientJoinOrderCarpetWashing(IOrderCarpetWashingServices orderCarpetWashing, IClientInfoServices clientInfoServices)
 {
     _orderCarpet = orderCarpetWashing;
     _clientInfo  = clientInfoServices;
 }
コード例 #8
0
 public RemoveClient(IUnitOfWork unitOfWork, IClientInfoServices clientInfoServices, IClientsOfCarWashServices clientsOfCarWash)
 {
     _unitOfWork       = unitOfWork;
     _clientInfo       = clientInfoServices;
     _clientsOfCarWash = clientsOfCarWash;
 }