Test.EIImageViewer
parent
7589a25ed3
commit
57b28e7356
|
@ -17,11 +17,15 @@ namespace IRaCIS.Application.Contracts
|
||||||
public string SiteCode { get; set; } = String.Empty;
|
public string SiteCode { get; set; } = String.Empty;
|
||||||
|
|
||||||
public string Address { get; set; } = String.Empty;
|
public string Address { get; set; } = String.Empty;
|
||||||
|
|
||||||
|
public string Province { get; set; } = string.Empty;
|
||||||
public string UniqueCode { get; set; } = string.Empty;
|
public string UniqueCode { get; set; } = string.Empty;
|
||||||
|
|
||||||
public string AliasName { get; set; } = string.Empty;
|
public string AliasName { get; set; } = string.Empty;
|
||||||
public string City { get; set; } = string.Empty;
|
public string City { get; set; } = string.Empty;
|
||||||
public string Country { get; set; } = string.Empty;
|
public string Country { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
public string Province { get; set; } = string.Empty;
|
||||||
public Guid? HospitalId { get; set; }
|
public Guid? HospitalId { get; set; }
|
||||||
public string DirectorName { get; set; } = string.Empty;
|
public string DirectorName { get; set; } = string.Empty;
|
||||||
public string DirectorPhone { get; set; } = string.Empty;
|
public string DirectorPhone { get; set; } = string.Empty;
|
||||||
|
@ -34,6 +38,8 @@ namespace IRaCIS.Application.Contracts
|
||||||
public Guid Id { get; set; }
|
public Guid Id { get; set; }
|
||||||
public string SiteName { get; set; } = String.Empty;
|
public string SiteName { get; set; } = String.Empty;
|
||||||
public string City { get; set; } = String.Empty;
|
public string City { get; set; } = String.Empty;
|
||||||
|
|
||||||
|
public string Province { get; set; } = string.Empty;
|
||||||
public string Country { get; set; } = String.Empty;
|
public string Country { get; set; } = String.Empty;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
|
|
||||||
|
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
[ForeignKey("SiteId")]]
|
[ForeignKey("SiteId")]
|
||||||
public Site Site { get; set; }
|
public Site Site { get; set; }
|
||||||
|
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
|
|
|
@ -21,6 +21,8 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
public Guid? HospitalId { get; set; }
|
public Guid? HospitalId { get; set; }
|
||||||
public int State { get; set; }
|
public int State { get; set; }
|
||||||
|
|
||||||
|
public string Province { get; set; } = string.Empty;
|
||||||
|
|
||||||
public string UniqueCode { get; set; } = string.Empty;
|
public string UniqueCode { get; set; } = string.Empty;
|
||||||
|
|
||||||
public string Address { get; set; }
|
public string Address { get; set; }
|
||||||
|
|
Loading…
Reference in New Issue