mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-29 18:21:08 +00:00
9 lines
176 B
C#
9 lines
176 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CleanArchitecture.Domain.Interfaces;
|
|
|
|
public interface IUnitOfWork : IDisposable
|
|
{
|
|
public Task<bool> CommitAsync();
|
|
} |