-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNearMissReport.cs
More file actions
60 lines (56 loc) · 2.81 KB
/
NearMissReport.cs
File metadata and controls
60 lines (56 loc) · 2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace jQueryDataTable
{
using System;
using System.Collections.Generic;
public partial class NearMissReport
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public NearMissReport()
{
this.NearMissReportAttachments = new HashSet<NearMissReportAttachment>();
}
public int NearMissReportId { get; set; }
public System.DateTime DateofOccurrence { get; set; }
public int VesselTypeId { get; set; }
public string Othervesseltype { get; set; }
public int NearMissPotentialEventId { get; set; }
public Nullable<int> NearMissPotentialEventSubcategoryId { get; set; }
public string OtherNearMissSubCategory { get; set; }
public int PotentialSeverityId { get; set; }
public bool IsUnsafeAct { get; set; }
public bool IsUnsafeConditionofArea { get; set; }
public bool IsUnsafeConditionofEquipment { get; set; }
public bool IsUnsafeUseofEquipment { get; set; }
public bool IsOther { get; set; }
public string OtherText { get; set; }
public string BriefDescription { get; set; }
public string CasualFactorsIdentified { get; set; }
public string ActionTaken { get; set; }
public bool ReportAsAnonymous { get; set; }
public string Name { get; set; }
public string RoleOnBoard { get; set; }
public string EmailId { get; set; }
public string VesselName { get; set; }
public string IMONumber { get; set; }
public Nullable<int> AssigneeId { get; set; }
public Nullable<int> EventStatusId { get; set; }
public string ReviewerComment { get; set; }
public Nullable<bool> IsSuppressed { get; set; }
public string CreatedBy { get; set; }
public Nullable<System.DateTime> CreatedDt { get; set; }
public string UpdatedBy { get; set; }
public Nullable<System.DateTime> UpdatedDt { get; set; }
public virtual ReportableCategory ReportableCategory { get; set; }
public virtual ReportableSubCategory ReportableSubCategory { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<NearMissReportAttachment> NearMissReportAttachments { get; set; }
}
}