38 lines
1.3 KiB
C#
38 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace rockfishCore.Models
|
|
{
|
|
public partial class Customer
|
|
{
|
|
public Customer()
|
|
{
|
|
//Contact = new HashSet<Contact>();
|
|
// Incident = new HashSet<Incident>();
|
|
// Notification = new HashSet<Notification>();
|
|
Purchase = new HashSet<Purchase>();
|
|
Site = new HashSet<Site>();
|
|
// Trial = new HashSet<Trial>();
|
|
}
|
|
|
|
public long Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Country { get; set; }
|
|
public string StateProvince { get; set; }
|
|
public string AffiliateNumber { get; set; }
|
|
public bool DoNotContact { get; set; }
|
|
public string Notes { get; set; }
|
|
public bool Active { get; set; }
|
|
|
|
public string SupportEmail { get; set; }
|
|
public string AdminEmail { get; set; }
|
|
|
|
// public virtual ICollection<Contact> Contact { get; set; }
|
|
// public virtual ICollection<Incident> Incident { get; set; }
|
|
// public virtual ICollection<Notification> Notification { get; set; }
|
|
public virtual ICollection<Purchase> Purchase { get; set; }
|
|
public virtual ICollection<Site> Site { get; set; }
|
|
// public virtual ICollection<Trial> Trial { get; set; }
|
|
}
|
|
}
|