Example #1
0
 public JobsController(IJobsService jobsService,
                       IIndustriesService industiesService,
                       ILocationsService locationsService,
                       UserManager <ApplicationUser> userManager)
 {
     this.jobsService       = jobsService;
     this.industriesService = industiesService;
     this.locationsService  = locationsService;
     this.userManager       = userManager;
 }
Example #2
0
 public CompaniesService(
     IDeletableEntityRepository <Company> companyRepository,
     IDeletableEntityRepository <ApplicationUser> userRepository,
     IIndustriesService industriesService,
     IAddressService addressService)
 {
     this.companyRepository = companyRepository;
     this.userRepository    = userRepository;
     this.industriesService = industriesService;
     this.addressService    = addressService;
 }
Example #3
0
 public SearchController(IIndustriesService industriesService,
                         ILocationsService locationsService,
                         IJobsService jobsService,
                         ISearchService searchService,
                         UserManager <ApplicationUser> userManager)
 {
     this.industriesService = industriesService;
     this.locationsService  = locationsService;
     this.jobsService       = jobsService;
     this.searchService     = searchService;
     this.userManager       = userManager;
 }
Example #4
0
 public AdminController(IAdminService adminService,
                        IJobsService jobsService,
                        IIndustriesService industriesService,
                        ILocationsService locationsService,
                        IUsersService usersService)
 {
     this.adminService      = adminService;
     this.jobsService       = jobsService;
     this.industriesService = industriesService;
     this.locationsService  = locationsService;
     this.usersService      = usersService;
 }