Beispiel #1
0
 public ExistingArticleDto(int articleId,
                           string name,
                           ExistingArticleGroupDto articleGroup,
                           bool isInventory)
 {
     ArticleId    = articleId;
     Name         = name;
     ArticleGroup = articleGroup;
     IsInventory  = isInventory;
 }
Beispiel #2
0
 public NewArticleDto(string name, ExistingArticleGroupDto articleGroup, bool isInventory)
 {
     Name         = name;
     ArticleGroup = articleGroup;
     IsInventory  = isInventory;
 }