Example #1
0
 public Mailer(XxxDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #2
0
 public MailSenderController(IMailer mailer, XxxDbContext context, IMapper mapper)
 {
     _mailer  = mailer;
     _context = context;
     _mapper  = mapper;
 }