public Prod_DTO Validar_Busca_Produto(string Nome) { if (string.IsNullOrWhiteSpace(Nome)) { throw new Exception("CAMPO NOME EM BRANCO"); } return(Buscar_DAL.BuscarProd(Nome)); }
public CADASTRO_DTO Val_Busca(string CPF)// método que retorna cadastro_dto e tem como parâmetro string cpf { if (string.IsNullOrWhiteSpace(CPF)) { throw new Exception("CAMPO CPF EM BRANCO"); } return(Buscar_DAL.Buscar(CPF)); }