Mark van Renswoude
74985e45de
Some are silly, like the "member not used" for public interfaces. The comments everywhere are ugly, sorry, but it keeps the possibly important issues visible without a dependency on some ReSharper annotations package.
15 lines
376 B
C#
15 lines
376 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tapeti.Flow
|
|
{
|
|
public interface IFlowRepository
|
|
{
|
|
Task<List<KeyValuePair<Guid, T>>> GetStates<T>();
|
|
Task CreateState<T>(Guid flowID, T state, DateTime timestamp);
|
|
Task UpdateState<T>(Guid flowID, T state);
|
|
Task DeleteState(Guid flowID);
|
|
}
|
|
}
|