Esempio n. 1
0
        /// <summary>
        /// Get Profile by profile id
        /// </summary>
        /// <param name="id"></param>
        /// <returns></returns>
        public JsonResult GetProfileById(int id)
        {
            var profile = _contactManager.FindProfileById(id);

            return(this.Json(profile, JsonRequestBehavior.AllowGet));
        }