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