Beispiel #1
0
 public GoodViewModel()
 {
     AllCategories   = new CategoryRepository().GetAll();
     AllManufactures = new ManufactureRepository().GetAll();
     Categories      = new SelectList(new CategoryRepository().GetAll(), "CategoryId", "CategoryName", null);
     Manufacture     = new SelectList(new ManufactureRepository().GetAll(), "ManufacturerId", "ManufacturerName", null);
 }