コード例 #1
0
 public BodyDataRepository(AppMainContext ctx)
 {
     this._ctx = ctx;
 }
コード例 #2
0
 public UserController(AppMainContext _ctx)
 {
     this._ctx = _ctx;
 }
コード例 #3
0
 public UserRepository(AppMainContext ctx)
 {
     this._ctx = ctx;
 }
コード例 #4
0
ファイル: BodyData.cs プロジェクト: Valera1980/healthapi
 public BodyDataController(AppMainContext ctx, IBodyDataTable dataTableService)
 {
     this._ctx = ctx;
     this._dataTableService = dataTableService;
 }
コード例 #5
0
ファイル: users.cs プロジェクト: Valera1980/dotnetCoreEf
 public UsersServices(AppMainContext ctx)
 {
     this._context = ctx;
 }