Exemplo n.º 1
0
        public ActionResult VolunteerJson()
        {
            string volunteerType   = Request["volunteerType"].UString();
            int    volunteerPeople = Request["volunteerPeople"].Uint();
            int    activeID        = Request["ActiveID"].Uint();
            var    obj             = siteService.AddVolunteer(volunteerType, volunteerPeople, activeID);

            return(Json(obj));
        }