Example #1
0
 public BodyDataRepository(AppMainContext ctx)
 {
     this._ctx = ctx;
 }
Example #2
0
 public UserController(AppMainContext _ctx)
 {
     this._ctx = _ctx;
 }
Example #3
0
 public UserRepository(AppMainContext ctx)
 {
     this._ctx = ctx;
 }
Example #4
0
 public BodyDataController(AppMainContext ctx, IBodyDataTable dataTableService)
 {
     this._ctx = ctx;
     this._dataTableService = dataTableService;
 }
Example #5
0
 public UsersServices(AppMainContext ctx)
 {
     this._context = ctx;
 }