コード例 #1
0
        public Result <IList <LicPremiumReminder> > GetLICPolicyMaturity(DateTime fromDate, DateTime toDate)
        {
            var result = new Result <IList <LicPremiumReminder> >();
            LifeInsuranceService lifeInsuranceService = new LifeInsuranceService();

            result.Value     = lifeInsuranceService.GetLICPolicyMaturity(fromDate, toDate);
            result.IsSuccess = true;
            return(result);
        }