Example #1
0
 public BackgroundService(IPTContext context,
                          ITaxPayerRepository taxPayerRepository,
                          IMessageInRepository messageIn)
 {
     _context            = context;
     _messageIn          = messageIn;
     _taxPayerRepository = taxPayerRepository;
 }
Example #2
0
 public AccountManager(
     IPTContext context,
     UserManager <User> userManager,
     RoleManager <Role> roleManager,
     IConfiguration config,
     IHttpContextAccessor httpAccessor)
 {
     _context     = context;
     _userManager = userManager;
     _roleManager = roleManager;
     _config      = config;
 }
Example #3
0
 public MessageInRepository(IPTContext context)
 {
     _context = context;
 }
Example #4
0
 public EmailSentLogRepository(IPTContext context)
 {
     _context = context;
 }
Example #5
0
 public PaymentRepository(IPTContext context)
 {
     _context = context;
 }
Example #6
0
 public TaxPayerRepository(IPTContext context)
 {
     _context = context;
 }
Example #7
0
 public AuditLogRepository(IPTContext context)
 {
     _context = context;
 }