Пример #1
0
 public AlertService(BSNSContext db, IFriendDAO friendDAO, IUserSession userSession, IAlertDAO alertDAO)
 {
     _db              = db;
     this.friendDAO   = friendDAO;
     this.userSession = userSession;
     this.alertDAO    = alertDAO;
 }
 public AlertService(IAlertDAO storage)
 {
     _storage = storage;
 }
Пример #3
0
 // AlertService should have a constructor that accepts IAlertDAO.
 public AlertService(IAlertDAO _alertDAO)
 {
     storage = _alertDAO;
 }
Пример #4
0
 public AlertService(IAlertDAO st)
 {
     storage = st;
 }
Пример #5
0
 public AlertService(IAlertDAO alertDAO)
 {
     this.storage = alertDAO;
 }
Пример #6
0
 public AlertService(IAlertDAO a)
 {
     storage = a;
 }
Пример #7
0
 public AlertService(IAlertDAO IAlertDAO)
 {
     _alertDAO = IAlertDAO;
 }
Пример #8
0
 public AlertService(IAlertDAO newObj)
 {
     this.obj = newObj;
 }