public EmployeeController(IMapper mapper, IEmployeeServices employeeServices, IOfficeServices officeServices, ICompanyServices companyServices) { this.mapper = mapper; this.employeeServices = employeeServices; this.officeServices = officeServices; this.companyServices = companyServices; }
public InvoiceServices(IInvoiceRepository invoiceRepository, ICustomerServices customerService, ICompanyServices companyService) { _invoiceRepository = invoiceRepository; _customerService = customerService; _companyService = companyService; }
public CompaniesController(ICompanyServices services) { _services = services; }
public GtMetricsServices(IGtMetricsRepo gtMetricsRepo, ICompanyServices companyServices) { _gtMetricsRepo = gtMetricsRepo; _companyServices = companyServices; }
public CompaniesController(ApplicationDbContext context, UserManager <ApplicationUser> userManager, ICompanyServices companyServices) { _context = context; _userManager = userManager; _main = companyServices; }
public CompanyController(ICompanyServices companyServices) { _ICompanyServices = companyServices; }
public CompanyController(IMapper mapper, ICompanyServices companyServices) { this.mapper = mapper; this.companyServices = companyServices; }
public CompanyController(ICompanyServices company) { _companyServices = company; }
public HomeController(ICompanyServices companyServices, INewsServices newsServices) { _companyServices = companyServices; _newsServices = newsServices; }
public CompanyController(ICompanyServices _ICompanyServices) { ICompanyServices = _ICompanyServices; }
public CompanyController(ICompanyServices companyServices, IDealerServices dealerServices) { _companyServices = companyServices; _dealerServices = dealerServices; }
public CompanyController(ICompanyServices companyServices, IErrorServices errorServices) { this.companyServices = companyServices; this.errorServices = errorServices; }
public CompanyRepository(ICompanyServices companyServices) { _companyService = companyServices; }
public UserServices(IUnitOfWork unitOfWork, ICompanyServices companyService, IUserMenuMappingServices userMenuMappingServices) { _unitOfWork = unitOfWork; _companyService = companyService; _userMenuMappingServices = userMenuMappingServices; }
public CompanyController(ICompanyServices repo, IMapper mapper) { _repo = repo; _mapper = mapper; }
public ProductController(IProductServices _IProductService, ICategoryServices _ICategoryServices, ICompanyServices _ICompanyServices) { IProductService = _IProductService; ICategoryServices = _ICategoryServices; ICompanyServices = _ICompanyServices; }
public OfficeController(IMapper mapper, IOfficeServices officeServices, ICompanyServices companyServices) { this.mapper = mapper; this.officeServices = officeServices; this.companyServices = companyServices; }
public CompanyController(ICompanyServices companyServices) { this._companyServices = companyServices; }
public CompanyController(ICompanyServices ICompanyService, IUnitOfWork unitOfWork) { //_repo = new StudentRepository(); _iCompanyService = ICompanyService; _unitOfWork = unitOfWork; }
public CompanyController(ICompanyServices service) { _service = service; }
public ControllerCompany(ICompanyServices companyService) { _companyServices = companyService; }
public DepartmentController(IDepartmentServices depISrv, ICompanyServices compISrv) { _departmentService = depISrv; _companyService = compISrv; }