Пример #1
0
 public ResponseObject Execute(RequestQueryParameter requestQueryParameter)
 {
     return(_gateway.GetEntityById(requestQueryParameter).ToResponse());
 }
Пример #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());
 }
Пример #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());
 }