Example #1
0
 public ActionResult ResponsiveLayoutEditorsPartial(string customerID)
 {
     if (string.IsNullOrEmpty(customerID))
     {
         customerID = NorthwindDataProvider.GetFirstCustomerID();
     }
     return(PartialView("ResponsiveLayoutEditorsPartial", NorthwindDataProvider.GetCustomerByID(customerID)));
 }