Beispiel #1
0
        public async Task UpdateAsync(TDto entity)
        {
            using (var uow = UnitOfWorkProvider.Create())
            {
                await Service.Update(entity);

                await uow.Commit();
            }
        }