public CatQueryService(
     CatsWithOwnersQuery catsWithOwnersQuery,
     UpdateCatOwnerQuery updateCatOwnerQuery)
 {
     this.catsWithOwnersQuery = catsWithOwnersQuery;
     this.updateCatOwnerQuery = updateCatOwnerQuery;
 }
Exemplo n.º 2
0
 public CatsQueryController(
     CatsWithOwnersQuery catsWithOwnersQuery,
     UpdateCatOwnerQuery updateCatOwnerQuery)
 {
     this.catsWithOwnersQuery = catsWithOwnersQuery;
     this.updateCatOwnerQuery = updateCatOwnerQuery;
 }