Example #1
0
 public AlertService(BSNSContext db, IFriendDAO friendDAO, IUserSession userSession, IAlertDAO alertDAO)
 {
     _db              = db;
     this.friendDAO   = friendDAO;
     this.userSession = userSession;
     this.alertDAO    = alertDAO;
 }
Example #2
0
 public AlertDAO(BSNSContext db, IFriendDAO friendDAO, IUserSession userSession)
 {
     _db              = db;
     this.friendDAO   = friendDAO;
     this.userSession = userSession;
     //this.accountDAO = accountDAO;
 }
Example #3
0
 public AccountPermissionDAO(BSNSContext db, IAlertService alertService)
 {
     _db = db;
 }
Example #4
0
 public AccountDAO(BSNSContext db, IAlertService alertService)
 {
     _db = db;
     this.alertService = alertService;
 }
Example #5
0
 public Email(IConfiguration configuration, FriendInvitationDAO friendInvitationDAO, BSNSContext db)
 {
     this.configuration       = configuration;
     this.friendInvitationDAO = friendInvitationDAO;
     _db = db;
 }
Example #6
0
 public JobDAO(BSNSContext db)
 {
     _db = db;
 }
 public FriendInvitationDAO(BSNSContext db)
 {
     _db = db;
 }
Example #8
0
 public StatusUpdateDAO(BSNSContext db, IAlertService alertService)
 {
     _db = db;
     this.alertService = alertService;
 }
Example #9
0
 public FriendDAO(BSNSContext db)
 {
     _db = db;
 }
Example #10
0
 public ProfileDAO(BSNSContext db, IUserSession userSession, IAlertService alertService)
 {
     _db = db;
     this.userSession  = userSession;
     this.alertService = alertService;
 }