public TravelCompanyService( TWishListDbContext context, ICompanyRequestService companyRequestService, UserManager <ApplicationUser> userManager) { this.context = context; this.companyRequestService = companyRequestService; this.userManager = userManager; }
public DashboardController( UserManager <ApplicationUser> userManager, ICompanyRequestService companyRequestService, ICompanyService companyService, IPathService pathService) { _companyRequestService = companyRequestService; _userManager = userManager; _companyService = companyService; _pathService = pathService; }
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; }
public CompanyRequestsController(ICompanyRequestService companyRequestService, IUserService userService) { this.companyRequestService = companyRequestService; this.userService = userService; }