public QuestService(IIdentity identity)
 {
     questDal    = new QuestDal();
     heroDal     = new HeroDal();
     myHero      = heroDal.GetByPlayer(int.Parse(identity.Name));
     itemDal     = new ItemDal();
     eqService   = new EquipmentService();
     heroService = new HeroService(identity);
 }
예제 #2
0
 public Item(IItemDal itemDal)
 {
     _itemDal = itemDal;
 }
예제 #3
0
 public ItemsManager(IItemDal dal)
 {
     this.dal = dal;
 }
예제 #4
0
 public ItemLogic(IItemDal itemDal)
 {
     _itemDal = itemDal;
 }