Ejemplo n.º 1
0
        public async Task <IEnumerable <ThemeAdminModel> > GetAllForAdminAsync()
        {
            var themes = _themeRepository.GetAll().Where(x => x.Status != ThemeStatus.Deleted);

            return(_mapper.Map <IEnumerable <ThemeAdminModel> >(themes));
        }
Ejemplo n.º 2
0
        public void Should_return_all_themes()
        {
            var actual = _sut.GetAll();

            Assert.AreEqual(2, actual.Count);
        }
Ejemplo n.º 3
0
 public IEnumerable <ThemeEntity> GetAllThemeEntities()
 {
     return(themeRepository.GetAll().Select(theme => theme.ToBllTheme()));
 }
Ejemplo n.º 4
0
 public async Task <Theme[]> GetAll(bool includeChildren = false)
 => await themeRepository.GetAll(includeChildren);
Ejemplo n.º 5
0
        public IEnumerable <ThemeAdminModel> GetAllForAdmin()
        {
            var themes = _themeRepository.GetAll();

            return(_mapper.Map <IEnumerable <ThemeAdminModel> >(themes));
        }
Ejemplo n.º 6
0
 /// <summary>
 /// Gets all the topics
 /// </summary>
 /// <returns>Theme Collection</returns>
 public IEnumerable <BllTheme> GetAll()
 {
     return(themeRepository.GetAll().Select(u => u.ToBllTheme()));
 }