Exemplo n.º 1
0
 public DataAccessService()
 {
     context = new EmailsDataContext();
 }
Exemplo n.º 2
0
 public DataAccessService()
 {
     emailsDataContext       = new EmailsDataContext();
     senderEmailsDataContext = new SenderEmailsDataContext();
     smtpServersDataContext  = new SmtpServersDataContext();
 }
Exemplo n.º 3
0
 public EmailsRepository(EmailsDataContext db)
 {
     this.db = db;
 }