コード例 #1
0
 public TireChangeServiceController(
     ITireChangeService tireChangeService,
     IPriceListTireFitting priceListTireFitting,
     IClientsOfCarWashServices clientsOfCarWash,
     IPriceTireFittingAdditionalServices priceTireFittingAdditionalServices,
     ITireRadius tireRadius,
     ITypeOfCars typeOfCars,
     ICreateOrderModule createOrder,
     IBrigadeForTodayServices brigade,
     IWageModules wageModules,
     IOrderServicesCarWashServices orderServices,
     ITireService tireService,
     IOrderCarWashWorkersServices orderCarWash,
     IEmployeesFacade employeesFacade)
 {
     _tireChangeService    = tireChangeService;
     _priceListTireFitting = priceListTireFitting;
     _priceTireFittingAdditionalServices = priceTireFittingAdditionalServices;
     _tireRadius       = tireRadius;
     _typeOfCars       = typeOfCars;
     _clientsOfCarWash = clientsOfCarWash;
     _createOrder      = createOrder;
     _brigade          = brigade;
     _wageModules      = wageModules;
     _orderServices    = orderServices;
     _tireService      = tireService;
     _orderCarWash     = orderCarWash;
     _employeesFacade  = employeesFacade;
 }
コード例 #2
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;
 }
コード例 #3
0
 public TireStorageController(
     ITireStorage tireStorage,
     IStorageFee storageFee,
     IReviwOrderModules reviwOrder,
     IBrigadeForTodayServices brigadeForToday,
     IClientsOfCarWashServices clientsOfCarWash,
     IOrder order,
     IWageModules wage,
     ITireRadius tireRadius,
     ICreateOrderModule createOrder,
     IAdditionalTireStorageServices additionalTireStorageServices,
     IOrderServicesCarWashServices orderServicesCarWash)
 {
     _tireStorage      = tireStorage;
     _storageFee       = storageFee;
     _reviwOrder       = reviwOrder;
     _brigadeForToday  = brigadeForToday;
     _clientsOfCarWash = clientsOfCarWash;
     _order            = order;
     _wage             = wage;
     _tireRadius       = tireRadius;
     _createOrder      = createOrder;
     _additionalTireStorageServices = additionalTireStorageServices;
     _orderServicesCarWash          = orderServicesCarWash;
 }
コード例 #4
0
 public ClientModules(IUnitOfWork unitOfWork, AutomapperConfig automapperConfig, IClientsOfCarWashServices clientsOfCarWashServices, IClientInfoServices clientInfo)
 {
     _unitOfWork       = unitOfWork;
     _automapperConfig = automapperConfig;
     _clientsOfCarWash = clientsOfCarWashServices;
     _clientInfo       = clientInfo;
 }
コード例 #5
0
 public ClientInfoController(IClientInfoServices clientInfo, IClientsOfCarWashServices clientsOfCarWash,
                             IClientsGroupsServices clientsGroups, IRemoveClient removeClient)
 {
     _clientInfo       = clientInfo;
     _clientsOfCarWash = clientsOfCarWash;
     _clientsGroups    = clientsGroups;
     _removeClient     = removeClient;
 }
コード例 #6
0
 public CarJoinClientServices(
     IClientsOfCarWashServices clientsOfCarWash,
     IClientInfoServices clientInfo,
     IOrderServicesCarWashServices orderServicesCarWash)
 {
     _clientInfo           = clientInfo;
     _clientsOfCarWash     = clientsOfCarWash;
     _orderServicesCarWash = orderServicesCarWash;
 }
コード例 #7
0
ファイル: Order.cs プロジェクト: jokosan/CarDetailingStudio
 public Order(IOrderServicesCarWashServices orderServicesCarWash, IOrderCarWashWorkersServices orderCarWashWorkers, IStorageFee storageFee, ITireStorage tireStorage,
              IClientsOfCarWashServices clientsOfCarWashServices)
 {
     _orderServicesCarWash     = orderServicesCarWash;
     _orderCarWashWorkers      = orderCarWashWorkers;
     _storageFee               = storageFee;
     _tireStorage              = tireStorage;
     _clientsOfCarWashServices = clientsOfCarWashServices;
 }
コード例 #8
0
 public AddClientJsonController(ICarMarkServices carMark, ICarModelServices carModel, IClientsOfCarWashServices clientsOfCarWash)
 {
     _carMark          = carMark;
     _carModel         = carModel;
     _clientsOfCarWash = clientsOfCarWash;
 }
コード例 #9
0
 public RemoveClient(IUnitOfWork unitOfWork, IClientInfoServices clientInfoServices, IClientsOfCarWashServices clientsOfCarWash)
 {
     _unitOfWork       = unitOfWork;
     _clientInfo       = clientInfoServices;
     _clientsOfCarWash = clientsOfCarWash;
 }