Exemplo n.º 1
0
        public override void Validar()
        {
            base.Validar();

            if (Fecha == DateTime.MinValue)
            {
                throw new ApplicationException("Debe ingresar fecha.");
            }

            if (Hora.Trim().Length == 0)
            {
                throw new ApplicationException("Debe ingresar hora.");
            }
        }