diff --git a/WorkFlow.Infrastructure/Contracts/IWfStateRepository.cs b/WorkFlow.Infrastructure/Contracts/IWfStateRepository.cs new file mode 100644 index 0000000..aa7ae9f --- /dev/null +++ b/WorkFlow.Infrastructure/Contracts/IWfStateRepository.cs @@ -0,0 +1,9 @@ +using DigitalData.Core.Abstractions.Infrastructure; +using WorkFlow.Domain.Entities; + +namespace WorkFlow.Infrastructure.Contracts +{ + public interface IWfStateRepository : ICRUDRepository + { + } +} \ No newline at end of file