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 CheckOutModel(UserManager <User> userManager,
                      TuplaContext Context,
                      IGame gamedb,
                      IPlatform platformdb,
                      IPlatformOfGame gameplatformdb,
                      ICreditCard creditdb,
                      ICart cartdb,
                      IOrderDetail orderdetaildb,
                      ITransaction transactiondb,
                      ICode codedb)
 {
     this.userManager    = userManager;
     context             = Context;
     this.gamedb         = gamedb;
     this.platformdb     = platformdb;
     this.gameplatformdb = gameplatformdb;
     this.creditdb       = creditdb;
     this.cartdb         = cartdb;
     this.orderdetaildb  = orderdetaildb;
     this.transactiondb  = transactiondb;
     this.codedb         = codedb;
 }
Ejemplo n.º 3
0
 public BestSellerModel(TuplaContext context,
                        IGame gamedb)
 {
     this.context = context;
     this.gamedb  = gamedb;
 }
Ejemplo n.º 4
0
 public BestRatingModel(TuplaContext context,
                        IGame gamedb)
 {
     this.context = context;
     this.gamedb  = gamedb;
 }
Ejemplo n.º 5
0
 public MostWishModel(TuplaContext context,
                      IGame gamedb)
 {
     this.context = context;
     this.gamedb  = gamedb;
 }
 public RecommendedGameModel(TuplaContext context,
                             IGame gamedb)
 {
     this.context = context;
     this.gamedb  = gamedb;
 }