IUnitOfWork.cs 249 B

12345678910
  1. using System;
  2. namespace Quadarax.Foundation.Core.Data.Interface.Domain
  3. {
  4. public interface IUnitOfWork<TDomainContext> : IDisposable where TDomainContext : IDomain
  5. {
  6. TDomainContext Context { get; }
  7. void Commit();
  8. }
  9. }