コード例 #1
0
        public JsonResult GetInterestDetails(int id)
        {
            InterestService   _interestService  = new InterestService();
            InterestMasterDto interestMasterDto = _interestService.GetByIDFedExt(id);

            return(Json(new { result = interestMasterDto }));
        }