public IList<CsosnADTO> selectCsosnAPagina(int primeiroResultado, int quantidadeResultados, CsosnADTO dto) { try { IList<CsosnADTO> resultado = null; using (ISession session = NHibernateHelper.getSessionFactory().OpenSession()) { NHibernateDAL<CsosnADTO> DAL = new NHibernateDAL<CsosnADTO>(session); resultado = DAL.selectPagina(primeiroResultado, quantidadeResultados, dto); } return resultado; } catch (Exception ex) { throw new FaultException(ex.Message); } }
public int deleteCsosnA(CsosnADTO dto) { try { int resultado = -1; using (ISession session = NHibernateHelper.getSessionFactory().OpenSession()) { NHibernateDAL<CsosnADTO> DAL = new NHibernateDAL<CsosnADTO>(session); DAL.delete(dto); session.Flush(); resultado = 0; } return resultado; } catch (Exception ex) { throw new FaultException(ex.Message); } }
public IList<CsosnADTO> selectCsosnA(CsosnADTO dto) { try { IList<CsosnADTO> resultado = null; using (ISession session = NHibernateHelper.getSessionFactory().OpenSession()) { NHibernateDAL<CsosnADTO> DAL = new NHibernateDAL<CsosnADTO>(session); resultado = DAL.select(dto); } return resultado; } catch (Exception ex) { throw new FaultException(ex.Message); } }