Esempio n. 1
0
 public async Task UpdateAsync(BlogrollType entity)
 {
     await _blogrollTypeRepository.UpdateAsync(entity);
 }
Esempio n. 2
0
        public async Task <BlogrollType> CreateAsync(BlogrollType entity)
        {
            entity.Id = await _blogrollTypeRepository.InsertAndGetIdAsync(entity);

            return(entity);
        }