Product.cs 1.1 KB

123456789101112131415161718192021222324252627282930
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated from a template.
  4. //
  5. // Manual changes to this file may cause unexpected behavior in your application.
  6. // Manual changes to this file will be overwritten if the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace APICancelar.Entities
  10. {
  11. using Newtonsoft.Json;
  12. using System;
  13. using System.Collections.Generic;
  14. public partial class Product
  15. {
  16. public string ProductArticleNumber { get; set; }
  17. public string ProductName { get; set; }
  18. public decimal ProductCost { get; set; }
  19. public Nullable<byte> ProductDiscountMax { get; set; }
  20. public int IdManufacturer { get; set; }
  21. public Nullable<byte> ProductDiscountAmount { get; set; }
  22. public int ProductQuantityInStock { get; set; }
  23. public string ProductDescription { get; set; }
  24. [JsonIgnore]
  25. public virtual Manufacturer Manufacturer { get; set; }
  26. }
  27. }