Example #1
0
 public ApplicationController(IBasketService basketService, IApplyingService applyingService)
 {
     _basketService   = basketService;
     _applyingService = applyingService;
 }
 public ApplicationManagementController(IApplyingService applicationSvc, IIdentityParser <ApplicationUser> appUserParser)
 {
     _appUserParser  = appUserParser;
     _applicationSvc = applicationSvc;
 }
Example #3
0
 public ApplicationController(IApplyingService applicationSvc, IBasketService basketSvc, IIdentityParser <ApplicationUser> appUserParser)
 {
     _appUserParser  = appUserParser;
     _applicationSvc = applicationSvc;
     _basketSvc      = basketSvc;
 }