Exemplo n.º 1
0
 public EmailHelper(IaeContext vdsContext)
 {
     _context    = vdsContext;
     _source     = "*****@*****.**";
     _smtpServer = new SmtpClient("smtp.gmail.com")
     {
         Port        = 587,
         Credentials = new System.Net.NetworkCredential("veda.futurisx", "veda@FUTURISX#2017"),
         EnableSsl   = true
     };
 }
Exemplo n.º 2
0
 public AuthRepository(IaeContext context)
 {
     db = context;
 }
Exemplo n.º 3
0
 public UserService(IaeContext vdsContext)
 {
     _context = vdsContext;
 }