14 lines
330 B
C#
14 lines
330 B
C#
// Repositories/IUnitOfWork.cs
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BelegeingangDatabase.Repositories
|
|
{
|
|
public interface IUnitOfWork : IDisposable
|
|
{
|
|
IMessageRepository Messages { get; }
|
|
IAttachmentRepository Attachments { get; }
|
|
Task<int> CompleteAsync();
|
|
}
|
|
}
|