using System; using System.Collections.Generic; using System.Text; using System.Threading; using System.Threading.Tasks; namespace BrightGlimmer.Data.Interfaces { public interface IUnitOfWork { Task SaveChangesAsync(CancellationToken cancellationToken = default); } }