public CatQueryService(
     CatsWithOwnersQuery catsWithOwnersQuery,
     UpdateCatOwnerQuery updateCatOwnerQuery)
 {
     this.catsWithOwnersQuery = catsWithOwnersQuery;
     this.updateCatOwnerQuery = updateCatOwnerQuery;
 }
示例#2
0
 public CatsQueryController(
     CatsWithOwnersQuery catsWithOwnersQuery,
     UpdateCatOwnerQuery updateCatOwnerQuery)
 {
     this.catsWithOwnersQuery = catsWithOwnersQuery;
     this.updateCatOwnerQuery = updateCatOwnerQuery;
 }