public AdminCategoryServiceTest()
 {
     this.db = Tests.GetDatabase();
     this.PopulateDb();
 }
Beispiel #2
0
 public UserAlbumService(SnapbookDbContext db)
 {
     this.db = db;
 }
 public NotificationService(SnapbookDbContext db)
 {
     this.db = db;
 }
Beispiel #4
0
 public PhotoService(SnapbookDbContext db)
 {
     this.db = db;
 }
Beispiel #5
0
 public AlbumServiceTest()
 {
     this.db = Tests.GetDatabase();
     this.PopulateDb();
 }
 public AdvertiserAdService(SnapbookDbContext db)
 {
     this.db = db;
 }
Beispiel #7
0
 public AdvertiserAdServiceTest()
 {
     this.db = Tests.GetDatabase();
     this.PopulateDb();
 }
Beispiel #8
0
 public AdminAdService(SnapbookDbContext db)
 {
     this.db = db;
 }
 public UserCategoryService(SnapbookDbContext db)
 {
     this.db = db;
 }
Beispiel #10
0
 public PhotoServiceTest()
 {
     Tests.Initialize();
     this.db = Tests.GetDatabase();
     this.PopulateDb();
 }
 public AdminCategoryService(SnapbookDbContext db)
 {
     this.db = db;
 }