change category from string to enum
This commit is contained in:
parent
d4dc0d8f77
commit
faf6f66f04
4 changed files with 16 additions and 6 deletions
6
Book.cs
6
Book.cs
|
@ -27,7 +27,7 @@ namespace Bücherwurm
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
public int ProductId { get; set; }
|
public int ProductId { get; set; }
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
public string Category { get; set; }
|
public CategoryEnum Category { get; set; }
|
||||||
[JsonPropertyName("imageLink")]
|
[JsonPropertyName("imageLink")]
|
||||||
public string ImageLink { get; set; }
|
public string ImageLink { get; set; }
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
|
@ -38,7 +38,7 @@ namespace Bücherwurm
|
||||||
int Pages, int Year)
|
int Pages, int Year)
|
||||||
{
|
{
|
||||||
ProductId = Id;
|
ProductId = Id;
|
||||||
Category = "book";
|
Category = CategoryEnum.Book;
|
||||||
LendTime = 30;
|
LendTime = 30;
|
||||||
this.Name = Title;
|
this.Name = Title;
|
||||||
this.Author = Author;
|
this.Author = Author;
|
||||||
|
@ -52,7 +52,7 @@ namespace Bücherwurm
|
||||||
|
|
||||||
public Book()
|
public Book()
|
||||||
{
|
{
|
||||||
Category = "book";
|
Category = CategoryEnum.Book;
|
||||||
LendTime = 30;
|
LendTime = 30;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
10
CategoryEnum.cs
Normal file
10
CategoryEnum.cs
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
namespace Bücherwurm
|
||||||
|
{
|
||||||
|
public enum CategoryEnum
|
||||||
|
{
|
||||||
|
Book,
|
||||||
|
Magazine,
|
||||||
|
EBook,
|
||||||
|
EPaper
|
||||||
|
}
|
||||||
|
}
|
|
@ -4,7 +4,7 @@ namespace Bücherwurm
|
||||||
{
|
{
|
||||||
int ProductId {get; set;}
|
int ProductId {get; set;}
|
||||||
|
|
||||||
string Category {get; set; }
|
CategoryEnum Category {get; set; }
|
||||||
|
|
||||||
int LendTime {get; set;}
|
int LendTime {get; set;}
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ namespace Bücherwurm
|
||||||
public int ProductId {get; set;}
|
public int ProductId {get; set;}
|
||||||
|
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
public string Category {get; set;}
|
public CategoryEnum Category {get; set;}
|
||||||
|
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
public int LendTime {get; set;}
|
public int LendTime {get; set;}
|
||||||
|
@ -35,7 +35,7 @@ namespace Bücherwurm
|
||||||
|
|
||||||
public Magazine()
|
public Magazine()
|
||||||
{
|
{
|
||||||
Category = "magazine";
|
Category = CategoryEnum.Magazine;
|
||||||
LendTime = 2;
|
LendTime = 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue