public IndexModel(IWiskey context) { this.context = context; }
public DeleteModel(IWiskey context, IGeneral general, IOrdersAndReservations orderContext) { this.context = context; this.general = general; this.orderContext = orderContext; }
public IndexModel(IWiskey whiskeyRepository, ShoppingCart shoppingCart, IGeneral general) { _whiskeyRepository = whiskeyRepository; _shoppingCart = shoppingCart; _general = general; }
public DeleteModel(IWiskey context, IGeneral general) { this.context = context; this.general = general; }
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; }