Example #1
0
        public Result Delete(NetWorth NetWorth)
        {
            var result = new Result();

            try
            {
                NetWorthService NetWorthService = new NetWorthService();
                NetWorthService.Delete(NetWorth);
                result.IsSuccess = true;
            }
            catch (Exception exception)
            {
                result.IsSuccess     = false;
                result.ExceptionInfo = exception;
            }
            return(result);
        }