Exemplo n.º 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;
 }
Exemplo n.º 3
0
 // AlertService should have a constructor that accepts IAlertDAO.
 public AlertService(IAlertDAO _alertDAO)
 {
     storage = _alertDAO;
 }
Exemplo n.º 4
0
 public AlertService(IAlertDAO st)
 {
     storage = st;
 }
Exemplo n.º 5
0
 public AlertService(IAlertDAO alertDAO)
 {
     this.storage = alertDAO;
 }
Exemplo n.º 6
0
 public AlertService(IAlertDAO a)
 {
     storage = a;
 }
Exemplo n.º 7
0
 public AlertService(IAlertDAO IAlertDAO)
 {
     _alertDAO = IAlertDAO;
 }
Exemplo n.º 8
0
 public AlertService(IAlertDAO newObj)
 {
     this.obj = newObj;
 }