public IActionResult getSurplusORLoss(string fundtypecode)
        {
            var     result = fundTypeService.GetFundTypeCodeByCode(fundtypecode);
            decimal te     = 0;

            if (result != null)
            {
                te = ledgerService.getSurplus_Loss(result.profitacct, fundtypecode);
            }


            return(Ok(new { responseCode = "200", responseDescription = "Successfull", data = te }));
        }