change wording
This commit is contained in:
parent
8680f5eb0a
commit
67d1124b00
2 changed files with 4 additions and 4 deletions
|
@ -147,7 +147,7 @@ namespace Bücherwurm
|
||||||
|
|
||||||
public void RemoveFromCatalogue()
|
public void RemoveFromCatalogue()
|
||||||
{
|
{
|
||||||
Console.WriteLine("Bitte geben Sie die ID des Buches an:");
|
Console.WriteLine("Bitte geben Sie die ID des Produktes an:");
|
||||||
var Id = int.Parse(Console.ReadLine());
|
var Id = int.Parse(Console.ReadLine());
|
||||||
Catalogue.Remove(Id);
|
Catalogue.Remove(Id);
|
||||||
Inventory.ProductRemove(Id);
|
Inventory.ProductRemove(Id);
|
||||||
|
@ -185,7 +185,7 @@ namespace Bücherwurm
|
||||||
|
|
||||||
public void AddToInventory()
|
public void AddToInventory()
|
||||||
{
|
{
|
||||||
Console.WriteLine("Bitte geben sie die BuchID an:");
|
Console.WriteLine("Bitte geben sie die Produkt ID an:");
|
||||||
var BookId = int.Parse(Console.ReadLine());
|
var BookId = int.Parse(Console.ReadLine());
|
||||||
var Book = Catalogue.LookupProduct(BookId);
|
var Book = Catalogue.LookupProduct(BookId);
|
||||||
if (Book != null)
|
if (Book != null)
|
||||||
|
@ -195,7 +195,7 @@ namespace Bücherwurm
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Console.WriteLine("Ein Buch mit der Id {0} existiert nicht!", BookId);
|
Console.WriteLine("Ein Produkt mit der Id {0} existiert nicht!", BookId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -67,7 +67,7 @@ namespace Bücherwurm
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
Console.WriteLine("Bitte geben Sie den Buchstaben für die gewünschte Aktion an:");
|
Console.WriteLine("Bitte geben Sie den Buchstaben für die gewünschte Aktion an:");
|
||||||
Console.WriteLine("Katalog auf(l)isten, Bu(c)h hinzufügen, Buch entfe(r)nen, Katalog verlassen (x):");
|
Console.WriteLine("Katalog auf(l)isten, Produkt hinzufügen (c), Buch entfe(r)nen, Katalog verlassen (x):");
|
||||||
var CatalogueSelect = Console.ReadLine().ToLower();
|
var CatalogueSelect = Console.ReadLine().ToLower();
|
||||||
switch (CatalogueSelect)
|
switch (CatalogueSelect)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue