public ActionResult Tax(BLTaxInformation bLTaxInformation)
 {
     if (ModelState.IsValid)
     {
         var userId = User.Identity.GetUserId();
         bLTaxInformation.UserId = userId;
         bLTaxInformation.Save();
     }
     return(View(bLTaxInformation));
 }