public ActionResult BillingCases()
        {
            List <BillingCases> response = _BillingService.GetBillCasesByVendor(Convert.ToInt32(SessionManager.UserId));

            return(View("BillingCases", response));
        }