internal SagasController(GetSagaByIdApi getSagaByIdApi) { this.getSagaByIdApi = getSagaByIdApi; }
public ApiModule() { Get["/sagas/{id}", true] = (parameters, token) => GetSagaByIdApi.Execute(this, (Guid)parameters.id); }