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

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

            return(validationResult);
        }