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 { getset; }
         public CrudOperation Operation { getset; }
         public string ViewControllerName { getset; }
         public string ViewActionName { getset; }
         public string ViewReturnUrl { getset; }
         public SuppliersCollection SuppliersDropDownListData { getset; }
         public CategoriesCollection CategoriesDropDownListData { getset; }
     } 
}