Beispiel #1
0
 public MemberController(UserManager <AppUser> userManager, SignInManager <AppUser> signInManager, IAppUserCV appUserCVService, IHostingEnvironment hostingEnvironment, ICVFileService cVFileService, IAppUserWorkService appUserWorkService)
 {
     this.userManager        = userManager;
     this.signInManager      = signInManager;
     this.appUserCVService   = appUserCVService;
     this.hostingEnvironment = hostingEnvironment;
     this.cVFileService      = cVFileService;
     this.appUserWorkService = appUserWorkService;
 }
Beispiel #2
0
 public CVFilesController(ICVFileService cVFileService, UserManager <AppUser> userManager)
 {
     this.cVFileService = cVFileService;
     this.userManager   = userManager;
 }