Example #1
0
        public ActionResult IsDuplicateName(string ID, string NAME, string REGION_ID)
        {
            var json = JsonConvert.SerializeObject(_branchRepository.CheckNameBranch(ID, NAME, REGION_ID));

            return(Content(json, "application/json"));
        }