Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. public partial class TBL_Wholesale_UWS_BusinessUnits
  2. {
  3. public int PrimaryID { get; set; }
  4. public string BusinessUnit { get; set; }
  5. public string Status { get; set; }
  6. }
  7.  
  8. public ActionResult test(int PrimaryID)
  9. {
  10. var testing = new TBL_Wholesale_UWS_BusinessUnits();
  11. // maybe putting new is the wrong thing to do as that would be wiping the class? IDK
  12. return View(testing);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement