public ActionResult Create(AppointmentGenDto dto)
        {
            var result = _AppointmentGenContract.Insert(sendPopLoadingAction, dto);

            return(Json(result, JsonRequestBehavior.AllowGet));
        }
        public ActionResult Update(AppointmentGenDto dto)
        {
            var result = _AppointmentGenContract.Update(dto);

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