Example #1
0
 public IceCreamShopRepository(DBIceScreamContext context)
 {
     Context = context;
 }
Example #2
0
 public UserDebtorController(DBIceScreamContext context)
 {
     Component = new UserDebtorComponent(context);
 }
Example #3
0
 public UserRepository(DBIceScreamContext context)
 {
     Context = context;
 }
Example #4
0
 public UserDebtorEvaluationRepository(DBIceScreamContext context)
 {
     Context = context;
 }
Example #5
0
 public IceCreamShopController(DBIceScreamContext context)
 {
     Component = new IceCreamShopComponent(context);
 }
Example #6
0
 public UserController(DBIceScreamContext context)
 {
     Component   = new UserComponent(context);
     S3Component = new S3Component();
 }
Example #7
0
 public UserDebtorEvaluationComponent(DBIceScreamContext context)
 {
     UserDebtorEvaluationRepository = new UserDebtorEvaluationRepository(context);
     UserComponent       = new UserComponent(context);
     UserDebtorComponent = new UserDebtorComponent(context);
 }
Example #8
0
 public LoginController(DBIceScreamContext context)
 {
     Component = new UserComponent(context);
 }
Example #9
0
 public UserComponent(DBIceScreamContext context)
 {
     UserRepository = new UserRepository(context);
 }
 public IceCreamShopComponent(DBIceScreamContext context)
 {
     IceCreamShopRepository = new IceCreamShopRepository(context);
 }