IControllerStandardID Property |
Namespace: SOWIWeb.Helper.Interface
/// <summary> /// Get route data parameter id. /// If object no exist then gives 0 return /// </summary> public int ID { get { //* exist a route data parameter id * if (this.ControllerContext.RouteData.Values["id"] == null) { return 0; } else { return System.Convert.ToInt32(this.ControllerContext.RouteData.Values["id"].ToString()); } } }