Example #1
0
 public TravelCompanyService(
     TWishListDbContext context,
     ICompanyRequestService companyRequestService,
     UserManager <ApplicationUser> userManager)
 {
     this.context = context;
     this.companyRequestService = companyRequestService;
     this.userManager           = userManager;
 }
Example #2
0
 public DashboardController(
     UserManager <ApplicationUser> userManager,
     ICompanyRequestService companyRequestService,
     ICompanyService companyService,
     IPathService pathService)
 {
     _companyRequestService = companyRequestService;
     _userManager           = userManager;
     _companyService        = companyService;
     _pathService           = pathService;
 }
Example #3
0
 public CompanyController(
     UserManager <ApplicationUser> userManager,
     ICompanyRequestService companyRequestService,
     ICompanyService companyService,
     ITourPackageService tourPackageService,
     IWebHostEnvironment webHostEnvironment,
     IPathService pathService,
     IConfiguration configuration)
 {
     _userManager           = userManager;
     _companyRequestService = companyRequestService;
     _companyService        = companyService;
     _tourPackageService    = tourPackageService;
     _webHostEnvironment    = webHostEnvironment;
     _pathService           = pathService;
     _configuration         = configuration;
 }
 public HomeController(ICompanyRequestService companyRequestService)
 {
     this.companyRequestService = companyRequestService;
 }
Example #5
0
 public CompanyRequestsController(ICompanyRequestService companyRequestService, IUserService userService)
 {
     this.companyRequestService = companyRequestService;
     this.userService           = userService;
 }