Example #1
0
        public Result <IList <NetWorth> > GetByClient(int clientId)
        {
            var             result          = new Result <IList <NetWorth> >();
            NetWorthService NetWorthService = new NetWorthService();

            var lstNetWorth = NetWorthService.Get(clientId);

            result.Value     = (IList <NetWorth>)lstNetWorth;
            result.IsSuccess = true;
            return(result);
        }