public void PreencherDropdownStatusAuditoria(DropDownList dropStatus, bool bSomentoAtivo, bool bTodos, bool bSelecione) { auditoriaBLL BAuditoria = new auditoriaBLL(); string sSql = BAuditoria.RetornarStatusAuditoria(bSomentoAtivo); PontoBr.Utilidades.WCL.CarregarDropDown(dropStatus, sSql, "Status da Auditoria", "IDStatus", bTodos, bSelecione); }
public DataTable RetornarStatusAuditoria(bool bSomentoAtivo) { auditoriaBLL BAuditoria = new auditoriaBLL(); string sSql = BAuditoria.RetornarStatusAuditoria(bSomentoAtivo); DataTable dataTable = PontoBr.Banco.SqlServer.RetornarDataTable(sSql); return(dataTable); }
public void PreencherCheckListBox_Auditoria(CheckedListBox chlAuditoria, bool bSomentoAtivo)//r { auditoriaBLL BAuditoria = new auditoriaBLL(); string sSql = BAuditoria.RetornarStatusAuditoria(bSomentoAtivo); DataTable dataTable = PontoBr.Banco.SqlServer.RetornarDataTable(sSql); PontoBr.Utilidades.WCL.CarregarCheckedListBox(chlAuditoria, dataTable, "Status da Auditoria", "IDStatus"); }
public void PreencherComboBox_StatusAuditoria(ComboBox comboAuditoria, bool bSomentoAtivo, bool bTodos, bool bSelecione) { auditoriaBLL BAuditoria = new auditoriaBLL(); string sSql = BAuditoria.RetornarStatusAuditoria(bSomentoAtivo); DataTable dataTable = PontoBr.Banco.SqlServer.RetornarDataTable(sSql); PontoBr.Utilidades.WCL.CarregarComboBox(comboAuditoria, dataTable, "IDStatus", "Status da Auditoria", bTodos, bSelecione); }
public status RetornarStatusAuditoria(int iIDStatus) { auditoriaBLL BAuditoria = new auditoriaBLL(); return(BAuditoria.RetornarStatusAuditoria(iIDStatus)); }