Ejemplo n.º 1
0
 public DetailModel(UserManager <User> userManager,
                    TuplaContext context,
                    IGame db,
                    IGamePicture picdb,
                    IGameTag dbgametag,
                    IPlatform platformdb,
                    IPlatformOfGame gamePlatformdb,
                    ITag dbTag,
                    IWishList wishdb,
                    ITransaction transdb,
                    IOrderDetail orderdetaildb,
                    IReview reviewdb,
                    ICustomerPicture userpicdb)
 {
     this.userManager    = userManager;
     this.context        = context;
     this.db             = db;
     this.picdb          = picdb;
     this.dbgametag      = dbgametag;
     this.platformdb     = platformdb;
     this.gamePlatformdb = gamePlatformdb;
     this.dbTag          = dbTag;
     this.wishdb         = wishdb;
     this.transdb        = transdb;
     this.orderdetaildb  = orderdetaildb;
     this.reviewdb       = reviewdb;
     this.userpicdb      = userpicdb;
 }
Ejemplo n.º 2
0
 public IndexModel(UserManager <User> userManager,
                   ICart cartdb,
                   IGame gamedb,
                   IGamePicture gamepicdb)
 {
     this.userManager = userManager;
     this.cartdb      = cartdb;
     this.gamedb      = gamedb;
     this.gamepicdb   = gamepicdb;
 }
 public RegisterDiscountModel(IGame gamedb,
                              IGamePicture gamepicdb,
                              IEventPromotion eventpromotiondb,
                              IPromotion promotiondb)
 {
     this.gamedb           = gamedb;
     this.gamepicdb        = gamepicdb;
     this.eventpromotiondb = eventpromotiondb;
     this.promotiondb      = promotiondb;
 }
Ejemplo n.º 4
0
 public WishlistModel(UserManager <Areas.Identity.Data.User> userManager,
                      IWishList wishlistdb,
                      IGame gamedb,
                      IGamePicture gamepicdb)
 {
     this.userManager = userManager;
     this.wishlistdb  = wishlistdb;
     this.gamedb      = gamedb;
     this.gamepicdb   = gamepicdb;
 }
Ejemplo n.º 5
0
 public IndexModel(UserManager <Areas.Identity.Data.User> userManager,
                   ICompany db,
                   IGame dbGame,
                   ICompanyPicture picdb,
                   IGamePicture picgamedb)
 {
     _userManager   = userManager;
     this.db        = db;
     this.dbGame    = dbGame;
     this.picdb     = picdb;
     this.picgamedb = picgamedb;
 }
Ejemplo n.º 6
0
 public EditgameModel(UserManager <Areas.Identity.Data.User> userManager,
                      IGame db,
                      IGamePicture picdb,
                      IPlatform platformdb,
                      IPlatformOfGame gamePlatformdb,
                      IWebHostEnvironment env)
 {
     this.userManager    = userManager;
     this.db             = db;
     this.picdb          = picdb;
     this.platformdb     = platformdb;
     this.gamePlatformdb = gamePlatformdb;
     this.env            = env;
 }
Ejemplo n.º 7
0
 public IndexModel(IGame db,
                   IGamePicture picdb)
 {
     this.db    = db;
     this.picdb = picdb;
 }