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; }
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; }