public WashDirtyClothesCommand(IFindDirtyClothesService findDirtyClothesService, IWashClothesService washClothesService, IUnitOfWork unitOfWork) { _findDirtyClothesService = findDirtyClothesService; _washClothesService = washClothesService; _unitOfWork = unitOfWork; }
public WashCommand(IWashClothesService washClothesService, IUnitOfWork unitOfWork) { _washClothesService = washClothesService; _unitOfWork = unitOfWork; }