Esempio n. 1
0
 public UserService(LoandaContext dbcontext)
 {
     this.dbcontext = dbcontext;
 }
Esempio n. 2
0
 public EmailAttachmentService(LoandaContext context)
 {
     this.context = context ?? throw new ArgumentNullException(nameof(context));
 }
Esempio n. 3
0
 public LoanApplicationService(LoandaContext context)
 {
     this.context = context ?? throw new ArgumentNullException(nameof(context));
 }
Esempio n. 4
0
 public RegisterController(IUserService userService, UserManager <User> userManager, LoandaContext context)
 {
     this.userService = userService;
     this.userManager = userManager;
     this.context     = context;
 }