Skip to content

Commit

Permalink
Remove area from inspection findings model
Browse files Browse the repository at this point in the history
  • Loading branch information
MuhammadUsama-afk-equinor authored and UsamaEquinorAFK committed Nov 16, 2023
1 parent 9590d50 commit 4be2f40
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions backend/api/Database/Models/InspectionFinding.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,19 @@ public class InspectionFinding

public DateTime InspectionDate { get; set; }

public string Area { get; set; }

public string IsarStepId { get; set; }

public string Findings { get; set; }

public InspectionFinding(InspectionFindingsQuery createInspectionFindingQuery)
{
InspectionDate = createInspectionFindingQuery.InspectionDate;
Area = createInspectionFindingQuery.Area;
IsarStepId = createInspectionFindingQuery.IsarStepId;
Findings = createInspectionFindingQuery.Findings;
}

public InspectionFinding()
{
InspectionDate = DateTime.UtcNow;
Area = "string";
IsarStepId = "string";
Findings = "string";
}
Expand Down

0 comments on commit 4be2f40

Please sign in to comment.