public IList <T> GetAll(decimal?idPadre) { Com.Delta.Data.IDaoBaseSession <ISessionModel> provider = getDaoContext(); if (idPadre.HasValue) { using (ITitoloDao dao = provider.DaoImpl.TitoloDao) { return(dao.GetSottotitoliByIdPadre(idPadre.Value) as IList <T>); } } else { if (typeof(T) == typeof(Titolo)) { using (ITitoloDao dao = provider.DaoImpl.TitoloDao) { return(dao.GetAll() as IList <T>); } } else { using (ISottoTitoloDao dao = provider.DaoImpl.SottoTitoloDao) { return(dao.GetAll() as IList <T>); } } } }
public T LoadByCode(string code) { if (typeof(T) == typeof(Titolo)) { using (ITitoloDao dao = getDaoContext().DaoImpl.TitoloDao) { return((T)dao.GetAll().SingleOrDefault(t => string.Equals(t.AppCode, code, StringComparison.OrdinalIgnoreCase))); } } else if (typeof(T) == typeof(SottoTitolo)) { using (ISottoTitoloDao dao = getDaoContext().DaoImpl.SottoTitoloDao) { return((T)(Titolo)dao.GetAll().FirstOrDefault(s => string.Equals(s.ComCode, code, StringComparison.OrdinalIgnoreCase))); } } else { throw new InvalidOperationException("Tipo non gestito."); } }