public virtual async Task Musteri_Sepeti_Getir_Kontrolu()
        {
            _stokKontrolApplicationServiceMock.StoktaUrunVarmi(Arg.Any <int>()).Returns(true);

            await _sepetApplicationService.SepeteUrunEkle(_testMusteriId, _testUrun1Id, 3);

            await _sepetApplicationService.SepeteUrunEkle(_testMusteriId, _testUrun2Id, 5);

            var sepet = await _sepetApplicationService.MusteriSepetiGetir(_testMusteriId);

            sepet.ShouldNotBeNull();
            sepet.MusteriId.ShouldBe(_testMusteriId);
            sepet.Items.ShouldNotBeEmpty();
            sepet.Items.Count.ShouldBe(2);

            SepettekiUrunAdediniKontrolEt(sepet.Items, _testUrun1Id, 3);
            SepettekiUrunAdediniKontrolEt(sepet.Items, _testUrun2Id, 5);
        }
 public Task <MusteriSepetiDto> Get(int musteriId)
 {
     return(_sepetApplicationService.MusteriSepetiGetir(musteriId));
 }