Exemple #1
0
        public bool GetObraAny(Guid id)
        {
            var obra = obraRepository.Get(x => x.Id == id);

            if (obra.Presupuesto.Count > 0)
            {
                return(true);
            }
            return(false);
        }