-
Notifications
You must be signed in to change notification settings - Fork 8
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
Showing
15 changed files
with
628 additions
and
33 deletions.
There are no files selected for viewing
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,58 @@ | ||
using System; | ||
using System.ComponentModel.DataAnnotations; | ||
using System.ComponentModel.DataAnnotations.Schema; | ||
|
||
namespace Hmcr.Data.Database.Entities | ||
{ | ||
[Table("HMR_SALT_VULNAREA", Schema = "dbo")] | ||
public class HmrSaltVulnArea | ||
{ | ||
public decimal VulnerableAreaId { get; set; } | ||
public decimal SaltReportId { get; set; } | ||
public HmrSaltReport SaltReport { get; set; } // Navigation property | ||
|
||
[Column("HWY_NO")] | ||
[StringLength(16)] | ||
public string HighwayNumber { get; set; } | ||
|
||
[Column("LAT")] | ||
public decimal? Latitude { get; set; } | ||
|
||
[Column("LONG")] | ||
public decimal? Longitude { get; set; } | ||
|
||
[Column("FEATURE")] | ||
[StringLength(255)] | ||
public string Feature { get; set; } | ||
|
||
[Column("TYPE")] | ||
[StringLength(255)] | ||
public string Type { get; set; } | ||
|
||
[Column("PROT_MEASURES")] | ||
[StringLength(255)] | ||
public string ProtectionMeasures { get; set; } | ||
|
||
[Column("ENV_MONITORING")] | ||
public bool? EnvironmentalMonitoring { get; set; } | ||
|
||
[Column("COMMENTS")] | ||
[StringLength(255)] | ||
public string Comments { get; set; } | ||
|
||
// Default | ||
public long ConcurrencyControlNumber { get; set; } | ||
public string AppCreateUserid { get; set; } | ||
public DateTime AppCreateTimestamp { get; set; } | ||
public Guid AppCreateUserGuid { get; set; } | ||
public string AppCreateUserDirectory { get; set; } | ||
public string AppLastUpdateUserid { get; set; } | ||
public DateTime AppLastUpdateTimestamp { get; set; } | ||
public Guid AppLastUpdateUserGuid { get; set; } | ||
public string AppLastUpdateUserDirectory { get; set; } | ||
public string DbAuditCreateUserid { get; set; } | ||
public DateTime? DbAuditCreateTimestamp { get; set; } | ||
public string DbAuditLastUpdateUserid { get; set; } | ||
public DateTime? DbAuditLastUpdateTimestamp { 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
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,16 @@ | ||
namespace Hmcr.Model.Dtos.SaltReport | ||
{ | ||
public class VulnareaDto | ||
{ | ||
public decimal VulnerableAreaId { get; set; } | ||
public decimal SaltReportId { get; set; } | ||
public string HighwayNumber { get; set; } | ||
public decimal? Latitude { get; set; } | ||
public decimal? Longitude { get; set; } | ||
public string Feature { get; set; } | ||
public string Type { get; set; } | ||
public string ProtectionMeasures { get; set; } | ||
public bool? EnvironmentalMonitoring { get; set; } | ||
public string Comments { 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
Oops, something went wrong.