public List <FPamentoDTO> Listar() { FPagamentoDataBase DB = new FPagamentoDataBase(); List <FPamentoDTO> folhapag = DB.Listar(); return(folhapag); }
public int Salvar(FPamentoDTO folhapag) { FPagamentoDataBase DB = new FPagamentoDataBase(); int id = DB.Salvar(folhapag); return(id); }
public List <FPamentoDTO> Consultar(string consult) { FPagamentoDataBase db = new FPagamentoDataBase(); return(db.Consultar(consult)); }
public void Remover(int idfolhapag) { FPagamentoDataBase DB = new FPagamentoDataBase(); DB.Remover(idfolhapag); }