Exemple #1
0
        public ActionResult GetCallAsJson(string id)
        {
            var call = _callService.GetById(HashidsHelper.Decrypt(id));
            var vm   = call.MapTo <CallVm>();

            return(Json(new { success = true, data = vm }));
        }