Ejemplo n.º 1
0
        public ResultEntity <CountryEntity> Create(CountryEntity countryEntity)
        {
            var validationResult = new ResultEntity <CountryEntity>();

            using (var countryDA = new CountryDA())
            {
                validationResult.Value = countryDA.Create(countryEntity);
            }

            return(validationResult);
        }