using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Text.Json.Serialization; using System.Threading.Tasks; namespace wispro.sp.entity { public partial class Customer { public Customer() { PerformanceItems = new HashSet(); } public int Id { get; set; } public string Name { get; set; } public string ContactMan { get; set; } public string Address { get; set; } public string Phone { get; set; } public int? ResponseManId { get; set; } public virtual Staff ResponseMan { get; set; } public int? ARate { get; set; } public int? SRate { get; set; } [JsonIgnore] public virtual ICollection PerformanceItems { get; set; } = new List(); } }