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