コード例 #1
0
ファイル: Service.cs プロジェクト: RudeRaccoon/Performa
 public Service(DALContext context)
 {
     this.context = context;
 }
コード例 #2
0
ファイル: BLLContext.cs プロジェクト: RudeRaccoon/Performa
 public BLLContext(DALContext context)
 {
     this.context = context;
 }
コード例 #3
0
ファイル: Service.cs プロジェクト: RudeRaccoon/Performa
 public Service()
 {
     context = new DALContext();
 }
コード例 #4
0
ファイル: BLLContext.cs プロジェクト: RudeRaccoon/Performa
 public BLLContext()
 {
     context = new DALContext();
 }