コード例 #1
0
 public WashDirtyClothesCommand(IFindDirtyClothesService findDirtyClothesService, IWashClothesService washClothesService, IUnitOfWork unitOfWork)
 {
     _findDirtyClothesService = findDirtyClothesService;
     _washClothesService = washClothesService;
     _unitOfWork = unitOfWork;
 }
コード例 #2
0
 public ShowDirtyClothesCommand(IFindDirtyClothesService findDirtyClothesService)
 {
     _findDirtyClothesService = findDirtyClothesService;
 }