コード例 #1
0
ファイル: MyPageGroupNewService.cs プロジェクト: kin0428/Splg
 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);
 }
コード例 #2
0
 public MyPageGroupDetailsService(ComEntities dbContext)
 {
     // todo インスタンス管理
     this.dbContext = dbContext;
     this.groupInfoService = new GroupInfoService(this.dbContext);
     this.pointInfoService = new PointInfoService(this.dbContext);
     this.systemDatetimeService = new SystemDatetimeService();
 }