public EmployeeController(IMapper mapper, IEmployeeServices employeeServices, IOfficeServices officeServices, ICompanyServices companyServices)
 {
     this.mapper           = mapper;
     this.employeeServices = employeeServices;
     this.officeServices   = officeServices;
     this.companyServices  = companyServices;
 }
Example #2
0
 public InvoiceServices(IInvoiceRepository invoiceRepository,
                        ICustomerServices customerService,
                        ICompanyServices companyService)
 {
     _invoiceRepository = invoiceRepository;
     _customerService   = customerService;
     _companyService    = companyService;
 }
Example #3
0
 public CompaniesController(ICompanyServices services)
 {
     _services = services;
 }
Example #4
0
 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;
 }
Example #6
0
 public CompanyController(ICompanyServices companyServices)
 {
     _ICompanyServices = companyServices;
 }
Example #7
0
 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;
 }
Example #10
0
 public CompanyController(ICompanyServices _ICompanyServices)
 {
     ICompanyServices = _ICompanyServices;
 }
Example #11
0
 public CompanyController(ICompanyServices companyServices, IDealerServices dealerServices)
 {
     _companyServices = companyServices;
     _dealerServices  = dealerServices;
 }
Example #12
0
 public CompanyController(ICompanyServices companyServices, IErrorServices errorServices)
 {
     this.companyServices = companyServices;
     this.errorServices   = errorServices;
 }
Example #13
0
 public CompanyRepository(ICompanyServices companyServices)
 {
     _companyService = companyServices;
 }
Example #14
0
 public UserServices(IUnitOfWork unitOfWork, ICompanyServices companyService, IUserMenuMappingServices userMenuMappingServices)
 {
     _unitOfWork              = unitOfWork;
     _companyService          = companyService;
     _userMenuMappingServices = userMenuMappingServices;
 }
Example #15
0
 public CompanyController(ICompanyServices repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }
 public ProductController(IProductServices _IProductService, ICategoryServices _ICategoryServices, ICompanyServices _ICompanyServices)
 {
     IProductService   = _IProductService;
     ICategoryServices = _ICategoryServices;
     ICompanyServices  = _ICompanyServices;
 }
Example #17
0
 public OfficeController(IMapper mapper, IOfficeServices officeServices, ICompanyServices companyServices)
 {
     this.mapper          = mapper;
     this.officeServices  = officeServices;
     this.companyServices = companyServices;
 }
Example #18
0
 public CompanyController(ICompanyServices companyServices)
 {
     this._companyServices = companyServices;
 }
Example #19
0
 public CompanyController(ICompanyServices ICompanyService, IUnitOfWork unitOfWork)
 {
     //_repo = new StudentRepository();
     _iCompanyService = ICompanyService;
     _unitOfWork      = unitOfWork;
 }
Example #20
0
 public CompanyController(ICompanyServices service)
 {
     _service = service;
 }
Example #21
0
 public ControllerCompany(ICompanyServices companyService)
 {
     _companyServices = companyService;
 }
Example #22
0
 public DepartmentController(IDepartmentServices depISrv, ICompanyServices compISrv)
 {
     _departmentService = depISrv;
     _companyService    = compISrv;
 }