public ListController(IMonsterContext context, IGameAccountContext context2) { MonsterLogic = new Logic.LogicObjects.MonsterLogic(context); GameAccountLogic = new Logic.LogicObjects.GameAccountLogic(context2); }
public GameAccountLogic(IGameAccountContext context) { AccountRepository = new GameAccountRepository(context); }
public StatsController(IGameAccountContext context) { AccountLogic = new Logic.LogicObjects.GameAccountLogic(context); }
public GameAccountRepository(IGameAccountContext context) { Context = context; }