Added FK 'ContactId' (optional/nullable).

Nullable property = optional relationship.
pull/1/head
Basimodo 2021-06-28 15:43:55 +07:00
parent 74e4e33bb6
commit 37ec044ab0
1 changed files with 4 additions and 4 deletions

@ -9,12 +9,12 @@ namespace Gremlin.GremlinData.EntityClasses
public uint QuoteId { get; set; }
//foreign keys:
public uint? ContactId { get; set; }
//navigation properties:
public Contact Recipient { get; set; }
public IList<LineItem> LineItems { get; set; }
//navigation properties:
//NONE
//class properties:
public Contact SalesRep { get; set; }
public string QuotationNumber { get; set; }