コード例 #1
0
 public ListController(IMonsterContext context, IGameAccountContext context2)
 {
     MonsterLogic     = new Logic.LogicObjects.MonsterLogic(context);
     GameAccountLogic = new Logic.LogicObjects.GameAccountLogic(context2);
 }
コード例 #2
0
 public GameAccountLogic(IGameAccountContext context)
 {
     AccountRepository = new GameAccountRepository(context);
 }
コード例 #3
0
 public StatsController(IGameAccountContext context)
 {
     AccountLogic = new Logic.LogicObjects.GameAccountLogic(context);
 }
コード例 #4
0
 public GameAccountRepository(IGameAccountContext context)
 {
     Context = context;
 }