Exemplo n.º 1
0
        public bool DeleteHobbie(int _id)
        {
            bool respuesta = false;

            if (_id > 0)
            {
                hobbieRepository.Delete(p => p.id == _id);
                respuesta = true;
            }

            return(respuesta);
        }