Example #1
0
 public FriendService(ApplicationDbContext _db, AccountService accountService, BanService banService)
 {
     db = _db;
     this.accountService = accountService;
     this.banService     = banService;
 }
Example #2
0
 public PhotoAlbumService(ApplicationDbContext _db, AccountService AccountService)
 {
     db = _db;
     this.AccountService = AccountService;
 }
 public PhotoService(ApplicationDbContext _db, AccountService accountService)
 {
     db = _db;
     this.accountService = accountService;
 }