public JsonResult DeleteMenu(RequestDeleteMenuMaster requestDeleteMenu)
 {
     try
     {
         var data = _iMenuMasterQueries.GetMenuMasterByMenuId(requestDeleteMenu.MenuId);
         _iUnitOfWork.MenuMasterCommand.Delete(data);
         var result = _iUnitOfWork.Commit();
         if (result)
         {
             _notificationService.SuccessNotification("Message", "The Menu Deleted successfully!");
             return(Json(new { Result = "success" }));
         }
         else
         {
             return(Json(new { Result = "failed", Message = "Cannot Delete" }));
         }
     }
     catch (Exception)
     {
         return(Json(new { Result = "failed", Message = "Cannot Delete" }));
     }
 }