Esempio n. 1
0
 public IndexModel(IWiskey context)
 {
     this.context = context;
 }
Esempio n. 2
0
 public DeleteModel(IWiskey context, IGeneral general, IOrdersAndReservations orderContext)
 {
     this.context      = context;
     this.general      = general;
     this.orderContext = orderContext;
 }
Esempio n. 3
0
 public IndexModel(IWiskey whiskeyRepository, ShoppingCart shoppingCart, IGeneral general)
 {
     _whiskeyRepository = whiskeyRepository;
     _shoppingCart      = shoppingCart;
     _general           = general;
 }
Esempio n. 4
0
 public DeleteModel(IWiskey context, IGeneral general)
 {
     this.context = context;
     this.general = general;
 }
Esempio n. 5
0
 public Create_EditModel(IWiskey context, IHtmlHelper htmlHelper, IGeneral general)
 {
     this.context    = context;
     this.HtmlHelper = htmlHelper;
     this.general    = general;
 }
 public DetailsModel(IWiskey context)
 {
     this.context = context;
 }