8 lines
170 B
C#
8 lines
170 B
C#
namespace Company.Domain._common;
|
|
|
|
public interface IUnitOfWork
|
|
{
|
|
void BeginAccountContext();
|
|
void CommitAccountContext();
|
|
void RollbackAccountContext();
|
|
} |