Пример #1
0
 public CurrenciesController(
     ICurrencyService currencyService,
     IResponseDTO response,
     IHttpContextAccessor httpContextAccessor) : base(response, httpContextAccessor)
 {
     _currencyService = currencyService;
 }
Пример #2
0
 public CustomersController(
     ICustomerService customerService,
     IResponseDTO response,
     IHttpContextAccessor httpContextAccessor) : base(response, httpContextAccessor)
 {
     _customerService = customerService;
 }
Пример #3
0
 public PackageTypesController(
     IPackageTypeService packageTypeService,
     IResponseDTO response,
     IHttpContextAccessor httpContextAccessor) : base(response, httpContextAccessor)
 {
     _packageTypeService = packageTypeService;
 }
Пример #4
0
 public PolicyInsurersController(
     IPolicyInsurerService policyInsurerService,
     IResponseDTO response,
     IHttpContextAccessor httpContextAccessor) : base(response, httpContextAccessor)
 {
     _policyInsurerService = policyInsurerService;
 }
Пример #5
0
 public CountriesController(
     ICountryService countryService,
     IResponseDTO response,
     IHttpContextAccessor httpContextAccessor) : base(response, httpContextAccessor)
 {
     _countryService = countryService;
 }
Пример #6
0
 public DiscrepancyStatusesController(
     IDiscrepancyStatusService discrepancyStatusService,
     IResponseDTO response,
     IHttpContextAccessor httpContextAccessor) : base(response, httpContextAccessor)
 {
     _discrepancyStatusService = discrepancyStatusService;
 }
Пример #7
0
 public VatsController(
     IVatService vatService,
     IResponseDTO response,
     IHttpContextAccessor httpContextAccessor) : base(response, httpContextAccessor)
 {
     _vatService = vatService;
 }
Пример #8
0
 public AccountController(
     IAccountService accountService,
     IResponseDTO response,
     IHttpContextAccessor httpContextAccessor) : base(response, httpContextAccessor)
 {
     _accountService = accountService;
 }
Пример #9
0
 public AttachmentTypesController(
     IAttachmentTypeService attachmentTypeService,
     IResponseDTO response,
     IHttpContextAccessor httpContextAccessor) : base(response, httpContextAccessor)
 {
     _attachmentTypeService = attachmentTypeService;
 }
Пример #10
0
 public IdentityController(IidentityServices identityServices, IResponseDTO responseDTO,
                           BakEndContext Context)
 {
     _identityService = identityServices;
     _BakEndContext   = Context;
     _response        = responseDTO;
 }
Пример #11
0
 public IdentificationTypesController(
     IIdentificationTypeService identificationTypeService,
     IResponseDTO response,
     IHttpContextAccessor httpContextAccessor) : base(response, httpContextAccessor)
 {
     _identificationTypeService = identificationTypeService;
 }
Пример #12
0
 public PrivacyServices(IGRepository <Privacy> Privacy,
                        IUnitOfWork <DB_A56457_LookandGoContext> unitOfWork, IResponseDTO responseDTO, IMapper mapper)
 {
     _PrivacyRepositroy = Privacy;
     _unitOfWork        = unitOfWork;
     _response          = responseDTO;
     _mapper            = mapper;
 }
Пример #13
0
 public PolicyInsurerService(AppDbContext appDbContext,
                             IResponseDTO response,
                             IMapper mapper)
 {
     _response     = response;
     _appDbContext = appDbContext;
     _mapper       = mapper;
 }
 public WorkshopNotificationsServices(IGRepository <WorkshopNotifications> WorkshopNotifications,
                                      IUnitOfWork <DB_A57576_SllehAppContext> unitOfWork, IResponseDTO responseDTO, IMapper mapper)
 {
     _WorkshopNotificationsRepositroy = WorkshopNotifications;
     _unitOfWork = unitOfWork;
     _response   = responseDTO;
     _mapper     = mapper;
 }
Пример #15
0
 public AdminUsersServices(IGRepository <AdminUsers> AdminUsers,
                           IUnitOfWork <DB_A57576_SllehAppContext> unitOfWork, IResponseDTO responseDTO, IMapper mapper)
 {
     _AdminUsersRepositroy = AdminUsers;
     _unitOfWork           = unitOfWork;
     _response             = responseDTO;
     _mapper = mapper;
 }
 public AdvertisementViewServices(IGRepository <AdvertisementView> AdvertisementView,
                                  IUnitOfWork <DB_A56457_LookandGoContext> unitOfWork, IResponseDTO responseDTO, IMapper mapper)
 {
     _AdvertisementViewRepositroy = AdvertisementView;
     _unitOfWork = unitOfWork;
     _response   = responseDTO;
     _mapper     = mapper;
 }
 public MalfunctionServices(IGRepository <Malfunction> Malfunction,
                            IUnitOfWork <DB_A57576_SllehAppContext> unitOfWork, IResponseDTO responseDTO, IMapper mapper)
 {
     _MalfunctionRepositroy = Malfunction;
     _unitOfWork            = unitOfWork;
     _response = responseDTO;
     _mapper   = mapper;
 }
 public WorkshopTechnicianServices(IGRepository <WorkshopTechnician> WorkshopTechnician,
                                   IUnitOfWork <DB_A57576_SllehAppContext> unitOfWork, IResponseDTO responseDTO, IMapper mapper)
 {
     _WorkshopTechnicianRepositroy = WorkshopTechnician;
     _unitOfWork = unitOfWork;
     _response   = responseDTO;
     _mapper     = mapper;
 }
Пример #19
0
 public ContactUsMarketServices(IGRepository <ContactUsMarket> ContactUsMarket,
                                IUnitOfWork <DB_A56457_LookandGoContext> unitOfWork, IResponseDTO responseDTO, IMapper mapper)
 {
     _ContactUsMarketRepositroy = ContactUsMarket;
     _unitOfWork = unitOfWork;
     _response   = responseDTO;
     _mapper     = mapper;
 }
Пример #20
0
 public MarketFollowServices(IGRepository <MarketFollow> MarketFollow,
                             IUnitOfWork <DB_A56457_LookandGoContext> unitOfWork, IResponseDTO responseDTO, IMapper mapper)
 {
     _MarketFollowRepositroy = MarketFollow;
     _unitOfWork             = unitOfWork;
     _response = responseDTO;
     _mapper   = mapper;
 }
 public CustomerServices(IGRepository <Customer> Customer,
                         IUnitOfWork <DB_A56457_LookandGoContext> unitOfWork, IResponseDTO responseDTO, IMapper mapper)
 {
     _CustomerRepositroy = Customer;
     _unitOfWork         = unitOfWork;
     _response           = responseDTO;
     _mapper             = mapper;
 }
 public FeaturesServices(IGRepository <Features> Features,
                         IUnitOfWork <DB_A57576_SllehAppContext> unitOfWork, IResponseDTO responseDTO, IMapper mapper)
 {
     _FeaturesRepositroy = Features;
     _unitOfWork         = unitOfWork;
     _response           = responseDTO;
     _mapper             = mapper;
 }
Пример #23
0
 public IdentificationTypeService(AppDbContext appDbContext,
                                  IResponseDTO response,
                                  IMapper mapper)
 {
     _response     = response;
     _appDbContext = appDbContext;
     _mapper       = mapper;
 }
Пример #24
0
 public DepartmentServices(IGRepository <Department> Department,
                           IUnitOfWork <DatabaseContext> unitOfWork, IResponseDTO responseDTO, IMapper mapper)
 {
     _departmentRepositroy = Department;
     _unitOfWork           = unitOfWork;
     _response             = responseDTO;
     _mapper = mapper;
 }
Пример #25
0
 public AboutUsServices(IGRepository <AboutUs> AboutUs,
                        IUnitOfWork <DB_A56457_LookandGoContext> unitOfWork, IResponseDTO responseDTO, IMapper mapper)
 {
     _AboutUsRepositroy = AboutUs;
     _unitOfWork        = unitOfWork;
     _response          = responseDTO;
     _mapper            = mapper;
 }
Пример #26
0
 public WorkshopRateServices(IGRepository <WorkshopRate> WorkshopRate,
                             IUnitOfWork <DB_A57576_SllehAppContext> unitOfWork, IResponseDTO responseDTO, IMapper mapper)
 {
     _WorkshopRateRepositroy = WorkshopRate;
     _unitOfWork             = unitOfWork;
     _response = responseDTO;
     _mapper   = mapper;
 }
Пример #27
0
 public AttachmentTypeService(AppDbContext appDbContext,
                              IResponseDTO response,
                              IMapper mapper)
 {
     _response     = response;
     _appDbContext = appDbContext;
     _mapper       = mapper;
 }
Пример #28
0
 public CompanyService(AppDbContext appDbContext,
                       IResponseDTO response,
                       IMapper mapper)
 {
     _response     = response;
     _appDbContext = appDbContext;
     _mapper       = mapper;
 }
 public CountryServices(IGRepository <Country> Country,
                        IUnitOfWork <DB_A57576_SllehAppContext> unitOfWork, IResponseDTO responseDTO, IMapper mapper)
 {
     _CountryRepositroy = Country;
     _unitOfWork        = unitOfWork;
     _response          = responseDTO;
     _mapper            = mapper;
 }
 public UnitOfMeasureRepository(
     ApplicationContext context,
     UserManager <User> userManager,
     IResponseDTO responseDTO)
 {
     _ctx         = context;
     _userManager = userManager;
     _response    = responseDTO;
 }