Rev | Line | |
---|
[f5f7c24] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 |
|
---|
| 4 | namespace ocrent;
|
---|
| 5 |
|
---|
| 6 | public partial class Company
|
---|
| 7 | {
|
---|
| 8 | public int CompanyId { get; set; }
|
---|
| 9 |
|
---|
| 10 | public string CompanyName { get; set; } = null!;
|
---|
| 11 |
|
---|
| 12 | public string CompanyEmail { get; set; } = null!;
|
---|
| 13 |
|
---|
| 14 | public DateOnly CreatedOn { get; set; }
|
---|
| 15 |
|
---|
| 16 | public int CreatedBy { get; set; }
|
---|
| 17 |
|
---|
| 18 | public DateOnly? ModifiedOn { get; set; }
|
---|
| 19 |
|
---|
| 20 | public int? ModifiedBy { get; set; }
|
---|
| 21 |
|
---|
| 22 | public int? BusinessUserId { get; set; }
|
---|
| 23 |
|
---|
| 24 | public int? AdministratorId { get; set; }
|
---|
| 25 |
|
---|
| 26 | public virtual Administrator? Administrator { get; set; }
|
---|
| 27 |
|
---|
| 28 | public virtual BusinessUser? BusinessUser { get; set; }
|
---|
| 29 |
|
---|
| 30 | public virtual ICollection<DeliveryMan> DeliveryMen { get; } = new List<DeliveryMan>();
|
---|
| 31 |
|
---|
| 32 | public virtual ICollection<Location> Locations { get; } = new List<Location>();
|
---|
| 33 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.