mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 08:46:39 +00:00
13 lines
No EOL
299 B
C#
13 lines
No EOL
299 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TicketManager.Data
|
|
{
|
|
public interface IUnitOfWork : IDisposable
|
|
{
|
|
IProjectRepository Projects { get; }
|
|
IAppUserRepository AppUsers { get; }
|
|
ITicketRepository Tickets { get; }
|
|
Task<int> Complete();
|
|
}
|
|
} |