Ejemplo n.º 1
0
 public ResponseObject Execute(RequestQueryParameter requestQueryParameter)
 {
     return(_gateway.GetEntityById(requestQueryParameter).ToResponse());
 }
Ejemplo n.º 2
0
 //TODO: rename id to the name of the identifier that will be used for this API, the type may also need to change
 public ResponseObject Execute(int id)
 {
     return(_gateway.GetEntityById(id).ToResponse());
 }
Ejemplo n.º 3
0
 //TODO: rename id to the name of the identifier that will be used for this API, the type may also need to change
 public CustomerRO Execute(int id)
 {
     return(_gateway.GetEntityById(id).ToResponse());
 }