14 lines
298 B
C#
14 lines
298 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BrightGlimmer.Data.Interfaces
|
|
{
|
|
public interface IUnitOfWork
|
|
{
|
|
Task<int> SaveChangesAsync(CancellationToken cancellationToken = default);
|
|
}
|
|
}
|