예제 #1
0
 public MessagesService(
     IOptions <LinksOptions> op,
     LinksContext db,
     ExecutionService es,
     IHttpContextAccessor httpContext,
     AccountService accountService,
     UtilsService us,
     MailService mas
     )
 {
     this.op             = op;
     this.db             = db;
     this.es             = es;
     this.httpContext    = httpContext;
     this.accountService = accountService;
     this.us             = us;
     this.mas            = mas;
 }
예제 #2
0
 public AccountService(
     EncryptionService encryptionService,
     IOptions <LinksOptions> op,
     LinksContext db,
     ExecutionService es,
     FileService fs,
     PagesService ps,
     IHttpContextAccessor httpContext,
     MailService mas
     )
 {
     this.encryptionService = encryptionService;
     this.op          = op;
     this.db          = db;
     this.es          = es;
     this.fs          = fs;
     this.ps          = ps;
     this.mas         = mas;
     this.httpContext = httpContext;
 }