NadekoBot/src/NadekoBot/Services/Database/IUnitOfWork.cs

17 lines
369 B
C#
Raw Normal View History

using NadekoBot.Services.Database.Repositories;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NadekoBot.Services.Database
{
public interface IUnitOfWork : IDisposable
{
IQuoteRepository Quotes { get; }
2016-08-24 13:29:01 +00:00
int Complete();
Task<int> CompleteAsync();
}
}