using System.Threading.Tasks; namespace Diligent.Data { public interface IUnitOfWork { void SaveChanges(); Task SaveChangesAsync(); } }