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