Example #1
0
 private void Construct(DiContainer container, SignalBus signalBus, ShopItemContext shopItemContext, ShopItemView shopItemView, Player player)
 {
     _container          = container;
     _signalBus          = signalBus;
     _shopItemContext    = shopItemContext;
     _shopItemViewPrefab = shopItemView;
     _player             = player;
 }
Example #2
0
 public ShopItemRepository(ShopItemContext db)
 {
     this.db = db;
 }
Example #3
0
 public UnitOfWorkRepository(string connect)
 {
     db = new ShopItemContext(connect);
 }