Exemplo n.º 1
0
        public ActionResult GetLocationList()
        {
            DalSysLocation objLocation = new DalSysLocation();
            var            locations   = objLocation.GetAllActiveLocation();

            return(Json(locations, JsonRequestBehavior.AllowGet));
        }
Exemplo n.º 2
0
 public LocationController()
 {
     _vmMsg          = new ValidationMsg();
     _dalSysLocation = new DalSysLocation();
 }