export class GetBasketInformation { | |
constructor(private basketRepository: BasketRepository) { | |
} | |
handle(): Promise<Basket> { | |
return this.basketRepository.getBasket() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment