using System; using NorthwindCS.Models; using NorthwindCS.Domain; using Northwind.BusinessObject; namespace NorthwindCS.ViewModels.Base { /// <summary> /// Base class for ProductsViewModel. Do not make changes to this class, /// instead, put additional code in the ProductsViewModel class /// </summary> public class ProductsViewModelBase { public NorthwindCS.Models.ProductsModel ProductsModel { get; set; } public CrudOperation Operation { get; set; } public string ViewControllerName { get; set; } public string ViewActionName { get; set; } public string ViewReturnUrl { get; set; } public SuppliersCollection SuppliersDropDownListData { get; set; } public CategoriesCollection CategoriesDropDownListData { get; set; } } }