Пример #1
0
        public JsonResult GetCustomerById(int id)
        {
            var data = _fR.Find <Company>(x => x.Id == id && x.Status && !x.IsDeleted);

            return(Json(data, JsonRequestBehavior.AllowGet));
        }