Agent.cs 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // Этот код создан по шаблону.
  4. //
  5. // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
  6. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace WPF.Framework.Models
  10. {
  11. using System;
  12. using System.Collections.Generic;
  13. using System.ComponentModel.DataAnnotations.Schema;
  14. using WPF.Framework.Models.Repository.Base;
  15. public partial class Agent : IEntity
  16. {
  17. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
  18. public Agent()
  19. {
  20. this.AgentPriorityHistory = new HashSet<AgentPriorityHistory>();
  21. this.ProductSale = new HashSet<ProductSale>();
  22. this.Shop = new HashSet<Shop>();
  23. }
  24. public int ID { get; set; }
  25. public string Title { get; set; }
  26. public int AgentTypeID { get; set; }
  27. public string Address { get; set; }
  28. public string INN { get; set; }
  29. public string KPP { get; set; }
  30. public string DirectorName { get; set; }
  31. public string Phone { get; set; }
  32. public string Email { get; set; }
  33. public string Logo { get; set; }
  34. public int Priority { get; set; }
  35. [NotMapped]
  36. public int ProductSaledLastYear
  37. {
  38. get
  39. {
  40. int count = 0;
  41. foreach (var item in ProductSale)
  42. {
  43. if((DateTime.Now - item.SaleDate).TotalDays >= 365)
  44. {
  45. count += item.ProductCount;
  46. }
  47. }
  48. return count;
  49. }
  50. }
  51. [NotMapped]
  52. public int Discount
  53. {
  54. get
  55. {
  56. int value = 0;
  57. foreach (var item in ProductSale)
  58. {
  59. value += item.ProductCount * item.ProductCount;
  60. }
  61. if (value >= 10000 && value < 50000)
  62. {
  63. return 5;
  64. }
  65. if (value >= 50000 && value < 150000)
  66. {
  67. return 10;
  68. }
  69. if (value >= 150000 && value < 500000)
  70. {
  71. return 20;
  72. }
  73. if (value > 500000)
  74. {
  75. return 25;
  76. }
  77. return 0;
  78. }
  79. }
  80. public virtual AgentType AgentType { get; set; }
  81. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  82. public virtual ICollection<AgentPriorityHistory> AgentPriorityHistory { get; set; }
  83. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  84. public virtual ICollection<ProductSale> ProductSale { get; set; }
  85. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  86. public virtual ICollection<Shop> Shop { get; set; }
  87. }
  88. }