コード例 #1
0
        public Result <IList <LifeInsurance> > GetAll(int plannerId)
        {
            var result = new Result <IList <LifeInsurance> >();
            LifeInsuranceService lifeInsuranceService = new LifeInsuranceService();

            result.Value     = lifeInsuranceService.GetAll(plannerId);
            result.IsSuccess = true;
            return(result);
        }