|
|
|
@ -45,30 +45,13 @@ namespace TinyPosEntity |
|
|
|
|
private List<ProductType> GetDefaultProductTypes() |
|
|
|
|
{ |
|
|
|
|
List<ProductType> productTypeList = new List<ProductType>(); |
|
|
|
|
productTypeList.Add(new ProductType() |
|
|
|
|
{ |
|
|
|
|
Name = "담배" |
|
|
|
|
}); |
|
|
|
|
productTypeList.Add(new ProductType() |
|
|
|
|
{ |
|
|
|
|
Name = "주류" |
|
|
|
|
}); |
|
|
|
|
productTypeList.Add(new ProductType() |
|
|
|
|
{ |
|
|
|
|
Name = "음료" |
|
|
|
|
}); |
|
|
|
|
productTypeList.Add(new ProductType() |
|
|
|
|
{ |
|
|
|
|
Name = "생필품" |
|
|
|
|
}); |
|
|
|
|
productTypeList.Add(new ProductType() |
|
|
|
|
{ |
|
|
|
|
Name = "과자" |
|
|
|
|
}); |
|
|
|
|
productTypeList.Add(new ProductType() |
|
|
|
|
{ |
|
|
|
|
Name = "기타" |
|
|
|
|
}); |
|
|
|
|
productTypeList.Add(new ProductType() { Name = "담배" }); |
|
|
|
|
productTypeList.Add(new ProductType() { Name = "주류" }); |
|
|
|
|
productTypeList.Add(new ProductType() { Name = "음료" }); |
|
|
|
|
productTypeList.Add(new ProductType() { Name = "과자" }); |
|
|
|
|
productTypeList.Add(new ProductType() { Name = "식료품" }); |
|
|
|
|
productTypeList.Add(new ProductType() { Name = "잡화" }); |
|
|
|
|
productTypeList.Add(new ProductType() { Name = "기타" }); |
|
|
|
|
|
|
|
|
|
return productTypeList; |
|
|
|
|
} |
|
|
|
|