Esempio n. 1
0
 public MyPageFollowingService(ComEntities dbContext)
 {
     // todo インスタンス管理
     this.dbContext = dbContext;
     this.followInfoService = new FollowInfoService(this.dbContext);
     this.pointService = new PointInfoService(this.dbContext);
 }
Esempio n. 2
0
 public UserFollowersService(ComEntities dbContext)
 {
     // todo インスタンス管理
     this.dbContext = dbContext;
     this.followInfoService = new FollowInfoService(this.dbContext);
     this.pointService = new PointInfoService(this.dbContext);
 }
Esempio n. 3
0
 public MyPageGroupNewService(ComEntities dbContext)
 {
     // todo インスタンス管理
     this.dbContext = dbContext;
     this.groupInfoService = new GroupInfoService(this.dbContext);
     this.followInfoService = new FollowInfoService(this.dbContext);
     this.pointInfoService = new PointInfoService(this.dbContext);
 }