public void Delete() { try { using (ProgramacaoPL pl = new ProgramacaoPL()) { pl.SP_DELETAR_PROGRAMACAO(this.Instance.Codigo); }; } catch (Exception ex) { throw ex; } }
public int Insert() { ProgramacaoPL pl = null; try { pl = new ProgramacaoPL(); return pl.SP_SALVAR_PROGRAMACAO(this.Instance); } catch (Exception ex) { throw ex; } finally { if (pl != null) GC.SuppressFinalize(pl); } }
public List<DBLayers.DAL.Entidades.Programacao> List(int CodigoPrograma) { ProgramacaoPL pl = null; List<DBLayers.DAL.Entidades.Programacao> retorno = new List<DAL.Entidades.Programacao>(); try { pl = new ProgramacaoPL(); retorno = pl.SP_CONSULTAR_PROGRAMACAO(CodigoPrograma); } catch (Exception ex) { throw ex; } finally { if (pl != null) pl.Dispose(); } return retorno; }
public void Select(int Codigo) { ProgramacaoPL pl = null; try { pl = new ProgramacaoPL(); this.Instance = pl.SP_SELECIONAR_PROGRAMACAO(Codigo); } catch (Exception ex) { throw ex; } }