-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e17ce24
commit edc1ceb
Showing
12 changed files
with
245 additions
and
106 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace StrDss.Data.Entities; | ||
|
||
/// <summary> | ||
/// A geographic classification of LOCAL GOVERNMENT SUBDIVISION used for sorting and grouping of members | ||
/// </summary> | ||
public partial class DssEconomicRegion | ||
{ | ||
/// <summary> | ||
/// System-consistent code (e.g. Northeast, Cariboo) | ||
/// </summary> | ||
public string EconomicRegionDsc { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// Business term for the ECONOMIC REGION (e.g. Northeast, Cariboo) | ||
/// </summary> | ||
public string EconomicRegionNm { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// Relative order in which the business prefers to see the ECONOMIC REGION listed | ||
/// </summary> | ||
public short? EconomicRegionSortNo { get; set; } | ||
|
||
public virtual ICollection<DssOrganization> DssOrganizations { get; set; } = new List<DssOrganization>(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace StrDss.Data.Entities; | ||
|
||
/// <summary> | ||
/// A sub-type of local government organization used for sorting and grouping of members | ||
/// </summary> | ||
public partial class DssLocalGovernmentType | ||
{ | ||
/// <summary> | ||
/// System-consistent code (e.g. Municipality, First Nations Community) | ||
/// </summary> | ||
public string LocalGovernmentType { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// Business term for for the local government type (e.g. Municipality, First Nations Community) | ||
/// </summary> | ||
public string LocalGovernmentTypeNm { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// Relative order in which the business prefers to see the LOCAL GOVERNMENT TYPE listed | ||
/// </summary> | ||
public short? LocalGovernmentTypeSortNo { get; set; } | ||
|
||
public virtual ICollection<DssOrganization> DssOrganizations { get; set; } = new List<DssOrganization>(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using System.Text.Json.Serialization; | ||
|
||
namespace StrDss.Model.OrganizationDtos | ||
{ | ||
public class EconomicRegionDto | ||
{ | ||
[JsonPropertyName("value")] | ||
public string EconomicRegionDsc { get; set; } = null!; | ||
[JsonPropertyName("label")] | ||
public string EconomicRegionNm { get; set; } = null!; | ||
[JsonPropertyName("sort")] | ||
public short? EconomicRegionSortNo { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using System.Text.Json.Serialization; | ||
|
||
namespace StrDss.Model.OrganizationDtos | ||
{ | ||
public class LocalGovTypeDto | ||
{ | ||
[JsonPropertyName("value")] | ||
public string LocalGovernmentType { get; set; } = null!; | ||
[JsonPropertyName("label")] | ||
public string LocalGovernmentTypeNm { get; set; } = null!; | ||
[JsonPropertyName("sort")] | ||
public short? LocalGovernmentTypeSortNo { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters