public JsonResult DeletePatient(int nidpatient)
        //public async Task<IActionResult> SaveDoctor([FromBody] Doctor request)
        {
            var result = _businessPatient.Delete(nidpatient).Result;

            return(Json(new
            {
                data = result
            }));
        }