Ejemplo n.º 1
0
        public ResultEntity <int> GetTotalRows(DBParamEntity dbParamEntity)
        {
            var validationResult = new ResultEntity <int>();

            using (var feedsDA = new FeedsDA())
            {
                validationResult.Value = feedsDA.GetTotalRows(dbParamEntity);
            }

            return(validationResult);
        }