public IActionResult Delete(int?id)
 {
     _select.RemoveContractSelect((int)id);
     _toastNotification.AddSuccessToastMessage("تم الحذف بنجاح");
     return(RedirectToAction(nameof(Index)));
 }