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 ClientController(IClientModules clientModules, ICarBodyServices carBody, ICarMarkServices carMark,
                         ICarModelServices carModel, IClientsGroupsServices clientsGroupsServices)
 {
     _clientModules = clientModules;
     _carBody       = carBody;
     _carMark       = carMark;
     _carModel      = carModel;
     _clientsGroups = clientsGroupsServices;
 }