//
        // GET: /ManageFees/
        #region ClosingCosts
        public ActionResult ShowClosingCostsHistory(String loanId)
        {
            Guid loanIdParsed = Guid.Parse(loanId);
            List <ClosingDateHistory> closingDateHistory = new List <ClosingDateHistory>();

            closingDateHistory = LoanServiceFacade.RetrieveClosingDateHistory(loanIdParsed, AccountHelper.GetUserAccountId());


            return(PartialView("Commands/ManageFees/_closingCostsHistory", closingDateHistory));
        }