コード例 #1
0
ファイル: TheGarageData.cs プロジェクト: prvuser87/TheGarage
 public TheGarageData(ITheGarageDbContext context)
 {
     this.context      = context;
     this.repositories = new Dictionary <Type, object>();
 }
コード例 #2
0
ファイル: TheGarageData.cs プロジェクト: prvuser87/TheGarage
 public static ITheGarageData Create(ITheGarageDbContext context)
 {
     return(new TheGarageData(context));
 }