Esempio n. 1
0
 public UserController(WorkrepContext dbContext, AuthenticationService authService, EmailService emailSaltService)
 {
     this.DBContext    = dbContext;
     this.EmailService = emailSaltService;
     this.AuthService  = authService;
 }
 public WorkplaceController(WorkrepContext dbContext)
 {
     this.DBContext = dbContext;
 }
 public AuthenticationController(WorkrepContext dbContext, AuthenticationService authService)
 {
     this.DBContext   = dbContext;
     this.AuthService = authService;
 }
Esempio n. 4
0
 public OrganizationController(WorkrepContext dbContext)
 {
     DBContext = dbContext;
 }