public IActionResult ViewDisbursementDetails(int id)
 {
     if (!(HttpContext.Session.GetString("role") == Enums.EmployeeRole.STORECLERK || HttpContext.Session.GetString("role") == Enums.EmployeeRole.STORESUPERVISOR))
     {
         return(RedirectToAction(HttpContext.Session.GetString("role"), "Home"));
     }
     ViewData["detailsList"] = ds.GetDisbursementDetailsByDisbursementId(id);
     return(View());
 }