Exemplo n.º 1
0
 public async Task UpdateAsync(WebSiteNotice entity)
 {
     await _webSiteNoticeRepository.UpdateAsync(entity);
 }
Exemplo n.º 2
0
        public async Task <WebSiteNotice> CreateAsync(WebSiteNotice entity)
        {
            entity.Id = await _webSiteNoticeRepository.InsertAndGetIdAsync(entity);

            return(entity);
        }