public IceCreamShopRepository(DBIceScreamContext context) { Context = context; }
public UserDebtorController(DBIceScreamContext context) { Component = new UserDebtorComponent(context); }
public UserRepository(DBIceScreamContext context) { Context = context; }
public UserDebtorEvaluationRepository(DBIceScreamContext context) { Context = context; }
public IceCreamShopController(DBIceScreamContext context) { Component = new IceCreamShopComponent(context); }
public UserController(DBIceScreamContext context) { Component = new UserComponent(context); S3Component = new S3Component(); }
public UserDebtorEvaluationComponent(DBIceScreamContext context) { UserDebtorEvaluationRepository = new UserDebtorEvaluationRepository(context); UserComponent = new UserComponent(context); UserDebtorComponent = new UserDebtorComponent(context); }
public LoginController(DBIceScreamContext context) { Component = new UserComponent(context); }
public UserComponent(DBIceScreamContext context) { UserRepository = new UserRepository(context); }
public IceCreamShopComponent(DBIceScreamContext context) { IceCreamShopRepository = new IceCreamShopRepository(context); }