public void Put(CadastroTeste cadastroTeste) { var repository = new CadastroTesteDAO(); repository.UpdateDataCadastroTeste(cadastroTeste); }
public IEnumerable <CadastroTeste> Get() { var repository = new CadastroTesteDAO(); return(repository.SelectAllClients()); }
public void Post(string Descricao) { var repository = new CadastroTesteDAO(); repository.InsertDataCadastroTeste(Descricao); }