Codebasis als Dateien ins Arbeitsrepo statt als Gitlink

QuellCode/CentronERP war nur als Gitlink (Submodul-Referenz auf 79c1142)
getrackt, ohne .gitmodules und ohne erreichbares Remote. Der
Untersuchungsgegenstand der Versuchsreihe war damit nicht reproduzierbar
gesichert: Ein Klon haette ein leeres Verzeichnis erhalten, und die Belege
der 3.287 Anforderungen waeren nicht ueberpruefbar gewesen.

Umstellung:
- Historie nach c:\DEV\CentronERP_git_snapshot_79c1142 ausgelagert
  (vollstaendig lesbar, enthaelt 79c1142 und Vorgaenger 89ccfd6)
- Gitlink aus dem Index entfernt
- Dateiinhalt aufgenommen: 24.557 Dateien, rund 333 MB

Die verschachtelte .gitignore der Codebasis gilt weiter, Build-Artefakte
bleiben ausgeschlossen. Details in Versuche/Versuch_01/_Codebasis-Nachweis.md
This commit is contained in:
Christoph Schwörer
2026-08-26 07:43:51 +02:00
parent 18edae75b6
commit f045b99a25
24664 changed files with 5846716 additions and 1 deletions
@@ -0,0 +1,83 @@
using System.Collections.Generic;
using Centron.BusinessLogic.Administration.Rights;
using Centron.BusinessLogic.WebServices.CheckListArea;
using Centron.Data.Entities.Administration;
using Centron.Data.Entities.Administration.Logins;
using Centron.Data.Entities.ChecklistArea;
using Centron.Data.Entities.EmployeeArea;
using Xunit;
namespace Centron.Tests.EndToEnd.Tests.Checklists;
public class ChecklistItemDeleteAccessTest
{
[Fact]
public void IsChecklistItemDeleteAllowed_ShouldReturnFalse_ForNullUser()
{
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemDeleteAllowed(null, null);
// Assert
Assert.False(result);
}
[Fact]
public void IsChecklistItemDeleteAllowed_ShouldReturnTrue_ForAdminUser()
{
// Arrange
var appUser = new AppUser{ Groups = new List<AppGroup>()};
appUser.Groups.Add(new AppGroup{ Name = UserRightsConst.ADMIN_ACCOUNT });
var loggedInUser = new LoggedInUser(appUser);
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemDeleteAllowed(null, loggedInUser);
// Assert
Assert.True(result);
}
[Fact]
public void IsChecklistItemDeleteAllowed_ShouldReturnTrue_ForAdHocItemCreatedByLoggedInUser()
{
// Arrange
var appUser = new AppUser { Employee = new EmployeeCompact { I3D = 1 } };
var loggedInUser = new LoggedInUser(appUser);
var checklistItemEntity = new CentronChecklistItem { AdHocCreatedBy = new Employee { I3D = 1 } };
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemDeleteAllowed(checklistItemEntity, loggedInUser);
// Assert
Assert.True(result);
}
[Fact]
public void IsChecklistItemDeleteAllowed_ShouldReturnFalse_ForAdHocItemNotCreatedByLoggedInUser()
{
// Arrange
var appUser = new AppUser { Employee = new EmployeeCompact { I3D = 1 } };
var loggedInUser = new LoggedInUser(appUser);
var checklistItemEntity = new CentronChecklistItem { AdHocCreatedBy = new Employee { I3D = 2 } };
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemDeleteAllowed(checklistItemEntity, loggedInUser);
// Assert
Assert.False(result);
}
[Fact]
public void IsChecklistItemDeleteAllowed_ShouldReturnFalse_ForTemplateItemWithNotAdminUser()
{
// Arrange
var appUser = new AppUser { Employee = new EmployeeCompact { I3D = 1 } };
var loggedInUser = new LoggedInUser(appUser);
var checklistItemEntity = new CentronChecklistItem { AdHocCreatedBy = null };
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemDeleteAllowed(checklistItemEntity, loggedInUser);
// Assert
Assert.False(result);
}
}
@@ -0,0 +1,331 @@
using System.Collections.Generic;
using Centron.BusinessLogic.Administration.Rights;
using Centron.BusinessLogic.WebServices.CheckListArea;
using Centron.Data.Entities.Administration;
using Centron.Data.Entities.Administration.Logins;
using Centron.Data.Entities.ChecklistArea;
using Centron.Data.Entities.EmployeeArea;
using Centron.Data.WebServices.Administration.Employees;
using Centron.Interfaces.ChecklistArea;
using CentronSoftware.Centron.WebServices.Entities.CentronChecklist;
using Xunit;
namespace Centron.Tests.EndToEnd.Tests.Checklists;
public class ChecklistItemEditAccessTest
{
[Fact]
public void IsChecklistItemEditAllowed_ShouldReturnFalse_ForNullUser()
{
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemEditAllowed(null, null, null);
// Assert
Assert.False(result.Item1);
}
[Fact]
public void IsChecklistItemEditAllowed_ShouldReturnTrue_ForAdminUser()
{
// Arrange
var appUser = new AppUser{ Groups = new List<AppGroup>()};
appUser.Groups.Add(new AppGroup{ Name = UserRightsConst.ADMIN_ACCOUNT });
var loggedInUser = new LoggedInUser(appUser);
var checklistItemDTO = new CentronChecklistItemDTO();
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemEditAllowed(checklistItemDTO, null, loggedInUser);
// Assert
Assert.True(result.Item1);
}
[Fact]
public void IsChecklistItemEditAllowed_ShouldReturnFalse_ForNonAdminUserWithDifferentEditor()
{
// Arrange
var appUser = new AppUser{ Employee = new EmployeeCompact { I3D = 1 } };
var loggedInUser = new LoggedInUser(appUser);
var checklistItemDTO = new CentronChecklistItemDTO { Editor = new EmployeePreviewDTO { I3D = 2 } };
var checklistItemEntity = new CentronChecklistItem { Editor = new Employee { I3D = 2 } };
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemEditAllowed(checklistItemDTO, checklistItemEntity, loggedInUser);
// Assert
Assert.False(result.Item1);
}
[Fact]
public void IsChecklistItemEditAllowed_ShouldReturnTrue_ForNonAdminUserWithSameEditor()
{
// Arrange
var appUser = new AppUser{ Employee = new EmployeeCompact { I3D = 2 } };
var loggedInUser = new LoggedInUser(appUser);
var checklistItemDTO = new CentronChecklistItemDTO { Editor = new EmployeePreviewDTO { I3D = 2 } };
var checklistItemEntity = new CentronChecklistItem { Editor = new Employee { I3D = 2 } };
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemEditAllowed(checklistItemDTO, checklistItemEntity, loggedInUser);
// Assert
Assert.True(result.Item1);
}
[Fact]
public void IsChecklistItemEditAllowed_ShouldReturnTrue_ForNullChecklistItemEntity()
{
// Arrange
var appUser = new AppUser { Groups = new List<AppGroup>() };
var loggedInUser = new LoggedInUser(appUser);
var checklistItemDTO = new CentronChecklistItemDTO();
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemEditAllowed(checklistItemDTO, null, loggedInUser);
// Assert
Assert.True(result.Item1);
}
[Fact]
public void IsChecklistItemEditAllowed_ShouldReturnTrue_ForAdHocItemCreatedByLoggedInUser()
{
// Arrange
var appUser = new AppUser { Employee = new EmployeeCompact { I3D = 1 } };
var loggedInUser = new LoggedInUser(appUser);
var checklistItemDTO = new CentronChecklistItemDTO { AdHocCreatedBy = new EmployeePreviewDTO { I3D = 1 } };
var checklistItemEntity = new CentronChecklistItem { AdHocCreatedBy = new Employee { I3D = 1 } };
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemEditAllowed(checklistItemDTO, checklistItemEntity, loggedInUser);
// Assert
Assert.True(result.Item1);
}
[Fact]
public void IsChecklistItemEditAllowed_ShouldReturnFalse_ForAdHocItemNotCreatedByLoggedInUser()
{
// Arrange
var appUser = new AppUser { Employee = new EmployeeCompact { I3D = 1 } };
var loggedInUser = new LoggedInUser(appUser);
var checklistItemDTO = new CentronChecklistItemDTO { AdHocCreatedBy = new EmployeePreviewDTO { I3D = 2 } };
var checklistItemEntity = new CentronChecklistItem { AdHocCreatedBy = new Employee { I3D = 2 } };
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemEditAllowed(checklistItemDTO, checklistItemEntity, loggedInUser);
// Assert
Assert.False(result.Item1);
}
[Fact]
public void IsChecklistItemEditAllowed_ShouldReturnFalse_ForTemplateItemWithDifferentEditor()
{
// Arrange
var appUser = new AppUser { Employee = new EmployeeCompact { I3D = 1 } };
var loggedInUser = new LoggedInUser(appUser);
var checklistItemDTO = new CentronChecklistItemDTO { Editor = new EmployeePreviewDTO { I3D = 2 } };
var checklistItemEntity = new CentronChecklistItem { Editor = new Employee { I3D = 2 } };
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemEditAllowed(checklistItemDTO, checklistItemEntity, loggedInUser);
// Assert
Assert.False(result.Item1);
}
[Fact]
public void IsChecklistItemEditAllowed_ShouldReturnTrue_ForTemplateItemWithSameEditorStateChange()
{
// Arrange
var appUser = new AppUser { Employee = new EmployeeCompact { I3D = 1 } };
var loggedInUser = new LoggedInUser(appUser);
var checklistItemDTO = new CentronChecklistItemDTO
{
Editor = new EmployeePreviewDTO { I3D = 1 },
State = CentronChecklistItemState.Finished
};
var checklistItemEntity = new CentronChecklistItem
{
Editor = new Employee { I3D = 1 },
State = CentronChecklistItemState.Open
};
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemEditAllowed(checklistItemDTO, checklistItemEntity, loggedInUser);
// Assert
Assert.True(result.Item1);
}
[Fact]
public void IsChecklistItemEditAllowed_ShouldReturnFalse_ForTemplateItemWithSameEditorCaptionChange()
{
// Arrange
var appUser = new AppUser { Employee = new EmployeeCompact { I3D = 1 } };
var loggedInUser = new LoggedInUser(appUser);
var checklistItemDTO = new CentronChecklistItemDTO
{
Editor = new EmployeePreviewDTO { I3D = 1 },
Caption = "Test"
};
var checklistItemEntity = new CentronChecklistItem
{
Editor = new Employee { I3D = 1 },
Caption = "Changed"
};
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemEditAllowed(checklistItemDTO, checklistItemEntity, loggedInUser);
// Assert
Assert.False(result.Item1);
}
[Fact]
public void IsChecklistItemEditAllowed_ShouldReturnFalse_ForTemplateItemWithSameEditorDescriptionChange()
{
// Arrange
var appUser = new AppUser { Employee = new EmployeeCompact { I3D = 1 } };
var loggedInUser = new LoggedInUser(appUser);
var checklistItemDTO = new CentronChecklistItemDTO
{
Editor = new EmployeePreviewDTO { I3D = 1 },
Description = "Test"
};
var checklistItemEntity = new CentronChecklistItem
{
Editor = new Employee { I3D = 1 },
Description = "Changed"
};
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemEditAllowed(checklistItemDTO, checklistItemEntity, loggedInUser);
// Assert
Assert.False(result.Item1);
}
[Fact]
public void IsChecklistItemEditAllowed_ShouldReturnFalse_ForTemplateItemWithSameEditorDurationChange()
{
// Arrange
var appUser = new AppUser { Employee = new EmployeeCompact { I3D = 1 } };
var loggedInUser = new LoggedInUser(appUser);
var checklistItemDTO = new CentronChecklistItemDTO
{
Editor = new EmployeePreviewDTO { I3D = 1 },
DurationTime = 10
};
var checklistItemEntity = new CentronChecklistItem
{
Editor = new Employee { I3D = 1 },
DurationTime = 0
};
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemEditAllowed(checklistItemDTO, checklistItemEntity, loggedInUser);
// Assert
Assert.False(result.Item1);
}
[Fact]
public void IsChecklistItemEditAllowed_ShouldReturnTrue_ForTemplateItemWithNullEditorStateChange()
{
// Arrange
var appUser = new AppUser { Employee = new EmployeeCompact { I3D = 1 } };
var loggedInUser = new LoggedInUser(appUser);
var checklistItemDTO = new CentronChecklistItemDTO
{
Editor = null,
State = CentronChecklistItemState.Finished
};
var checklistItemEntity = new CentronChecklistItem
{
Editor = null,
State = CentronChecklistItemState.Open
};
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemEditAllowed(checklistItemDTO, checklistItemEntity, loggedInUser);
// Assert
Assert.True(result.Item1);
}
[Fact]
public void IsChecklistItemEditAllowed_ShouldReturnFalse_ForTemplateItemWithNullEditorCaptionChange()
{
// Arrange
var appUser = new AppUser { Employee = new EmployeeCompact { I3D = 1 } };
var loggedInUser = new LoggedInUser(appUser);
var checklistItemDTO = new CentronChecklistItemDTO
{
Editor = null,
Caption = "Test"
};
var checklistItemEntity = new CentronChecklistItem
{
Editor = null,
Caption = "Changed"
};
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemEditAllowed(checklistItemDTO, checklistItemEntity, loggedInUser);
// Assert
Assert.False(result.Item1);
}
[Fact]
public void IsChecklistItemEditAllowed_ShouldReturnFalse_ForTemplateItemWithNullEditorDescriptionChange()
{
// Arrange
var appUser = new AppUser { Employee = new EmployeeCompact { I3D = 1 } };
var loggedInUser = new LoggedInUser(appUser);
var checklistItemDTO = new CentronChecklistItemDTO
{
Editor = null,
Description = "Test"
};
var checklistItemEntity = new CentronChecklistItem
{
Editor = null,
Description = "Changed"
};
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemEditAllowed(checklistItemDTO, checklistItemEntity, loggedInUser);
// Assert
Assert.False(result.Item1);
}
[Fact]
public void IsChecklistItemEditAllowed_ShouldReturnFalse_ForTemplateItemWithNullEditorDurationChange()
{
// Arrange
var appUser = new AppUser { Employee = new EmployeeCompact { I3D = 1 } };
var loggedInUser = new LoggedInUser(appUser);
var checklistItemDTO = new CentronChecklistItemDTO
{
Editor = null,
DurationTime = 10
};
var checklistItemEntity = new CentronChecklistItem
{
Editor = null,
DurationTime = 0
};
// Act
var result = CentronChecklistWebserviceBL.IsChecklistItemEditAllowed(checklistItemDTO, checklistItemEntity, loggedInUser);
// Assert
Assert.False(result.Item1);
}
}
@@ -0,0 +1,54 @@
using Centron.BusinessLogic;
using Centron.BusinessLogic.WebServices.CheckListArea;
using Centron.Tests.EndToEnd.Infrastructure;
using CentronSoftware.Centron.WebServices.Entities.CentronChecklist;
using Xunit;
using Xunit.Abstractions;
namespace Centron.Tests.EndToEnd.Tests.Checklists;
public class ChecklistItemTest(ITestOutputHelper testOutputHelper) : EndToEndTest(testOutputHelper)
{
[Fact]
public override void Execute() { }
[Fact]
public void SaveOrUpdateCentronChecklistItem_ShouldReturnNewItem_WhenNewItemIsCreated()
{
// Arrange
using var session = new BLSession();
var webserviceBL = session.GetBL<CentronChecklistWebserviceBL>();
var loggedInUser = GetLoggedInUser();
var checklistItemDTO = new CentronChecklistItemDTO { Caption = "Test" };
// Act
var result = webserviceBL.SaveOrUpdateCentronChecklistItem(checklistItemDTO, loggedInUser);
// Assert
Verifier.Verify("NewChecklistItem", result);
}
[Fact]
public void SaveOrUpdateCentronChecklistItem_ShouldReturnUpdatedItem_WhenCreatorEdits()
{
// Arrange
using var session = new BLSession();
var webserviceBL = session.GetBL<CentronChecklistWebserviceBL>();
var loggedInUser = GetLoggedInUser();
var checklistItemDTO = new CentronChecklistItemDTO { Caption = "Test" };
// save new item
var resultCreated = webserviceBL.SaveOrUpdateCentronChecklistItem(checklistItemDTO, loggedInUser);
var i3d = resultCreated.Data.I3D;
// Act
var checklistItemDTOUpdate = new CentronChecklistItemDTO
{
I3D = i3d,
Caption = "Updated"
};
var result = webserviceBL.SaveOrUpdateCentronChecklistItem(checklistItemDTOUpdate, loggedInUser);
// Assert
Verifier.Verify("UpdateChecklistItem", result);
}
}
@@ -0,0 +1,119 @@
{
Data: {
AdHocCreatedBy: {
Availability: 0,
BranchI3D: 0,
DefaultStorageI3D: null,
Dispatcher: false,
DisplayText: 'Administrator, c-entron (ADMIN)',
Email: 'vertrieb@c-entron.de',
Employeenumber: null,
FirstName: 'c-entron',
FullName: 'Administrator, c-entron (ADMIN)',
I3D: 22,
IsActive: true,
LastAvailabilityChange: null,
LastName: 'Administrator',
LeavingDate: DateTime,
Phone1: '0731-140399-0',
RemainingDaysOfVacation: 28.0,
ShortSign: 'ADMIN',
State: 1,
SupportLevel: null,
Template1: false,
Template2: false,
Template3: false,
Template4: false,
VacationEntitlement: 30.0
},
Caption: 'Test',
CentronChecklistItemLogs: [
{
ChangedBy: {
Availability: 0,
BranchI3D: 0,
DefaultStorageI3D: null,
Dispatcher: false,
DisplayText: 'Administrator, c-entron (ADMIN)',
Email: 'vertrieb@c-entron.de',
Employeenumber: null,
FirstName: 'c-entron',
FullName: 'Administrator, c-entron (ADMIN)',
I3D: 22,
IsActive: true,
LastAvailabilityChange: null,
LastName: 'Administrator',
LeavingDate: DateTime,
Phone1: '0731-140399-0',
RemainingDaysOfVacation: 28.0,
ShortSign: 'ADMIN',
State: 1,
SupportLevel: null,
Template1: false,
Template2: false,
Template3: false,
Template4: false,
VacationEntitlement: 30.0
},
ChangedDate: DateTime,
ChecklistItemI3D: 0,
I3D: 1,
NewValue: 'Test',
OldValue: null,
Property: 'Caption',
Version: 1
},
{
ChangedBy: {
Availability: 0,
BranchI3D: 0,
DefaultStorageI3D: null,
Dispatcher: false,
DisplayText: 'Administrator, c-entron (ADMIN)',
Email: 'vertrieb@c-entron.de',
Employeenumber: null,
FirstName: 'c-entron',
FullName: 'Administrator, c-entron (ADMIN)',
I3D: 22,
IsActive: true,
LastAvailabilityChange: null,
LastName: 'Administrator',
LeavingDate: DateTime,
Phone1: '0731-140399-0',
RemainingDaysOfVacation: 28.0,
ShortSign: 'ADMIN',
State: 1,
SupportLevel: null,
Template1: false,
Template2: false,
Template3: false,
Template4: false,
VacationEntitlement: 30.0
},
ChangedDate: DateTime,
ChecklistItemI3D: 0,
I3D: 2,
NewValue: '1',
OldValue: '0',
Property: 'IsAdHoc',
Version: 1
}
],
CheckedBy: null,
CheckedDate: null,
ChecklistI3D: null,
ChecklistItems: [],
Description: null,
DurationTime: 0,
Editor: null,
I3D: 1,
InternalNote: null,
OrderNumber: 0,
ParentChecklistItemI3D: null,
State: 0
},
Error: null,
Message: null,
MessageCode: null,
Status: 0
}
@@ -0,0 +1,154 @@
{
Data: {
AdHocCreatedBy: {
Availability: 0,
BranchI3D: 0,
DefaultStorageI3D: null,
Dispatcher: false,
DisplayText: 'Administrator, c-entron (ADMIN)',
Email: 'vertrieb@c-entron.de',
Employeenumber: null,
FirstName: 'c-entron',
FullName: 'Administrator, c-entron (ADMIN)',
I3D: 22,
IsActive: true,
LastAvailabilityChange: null,
LastName: 'Administrator',
LeavingDate: DateTime,
Phone1: '0731-140399-0',
RemainingDaysOfVacation: 28.0,
ShortSign: 'ADMIN',
State: 1,
SupportLevel: null,
Template1: false,
Template2: false,
Template3: false,
Template4: false,
VacationEntitlement: 30.0
},
Caption: 'Updated',
CentronChecklistItemLogs: [
{
ChangedBy: {
Availability: 0,
BranchI3D: 0,
DefaultStorageI3D: null,
Dispatcher: false,
DisplayText: 'Administrator, c-entron (ADMIN)',
Email: 'vertrieb@c-entron.de',
Employeenumber: null,
FirstName: 'c-entron',
FullName: 'Administrator, c-entron (ADMIN)',
I3D: 22,
IsActive: true,
LastAvailabilityChange: null,
LastName: 'Administrator',
LeavingDate: DateTime,
Phone1: '0731-140399-0',
RemainingDaysOfVacation: 28.0,
ShortSign: 'ADMIN',
State: 1,
SupportLevel: null,
Template1: false,
Template2: false,
Template3: false,
Template4: false,
VacationEntitlement: 30.0
},
ChangedDate: DateTime,
ChecklistItemI3D: 0,
I3D: 1,
NewValue: 'Test',
OldValue: null,
Property: 'Caption',
Version: 1
},
{
ChangedBy: {
Availability: 0,
BranchI3D: 0,
DefaultStorageI3D: null,
Dispatcher: false,
DisplayText: 'Administrator, c-entron (ADMIN)',
Email: 'vertrieb@c-entron.de',
Employeenumber: null,
FirstName: 'c-entron',
FullName: 'Administrator, c-entron (ADMIN)',
I3D: 22,
IsActive: true,
LastAvailabilityChange: null,
LastName: 'Administrator',
LeavingDate: DateTime,
Phone1: '0731-140399-0',
RemainingDaysOfVacation: 28.0,
ShortSign: 'ADMIN',
State: 1,
SupportLevel: null,
Template1: false,
Template2: false,
Template3: false,
Template4: false,
VacationEntitlement: 30.0
},
ChangedDate: DateTime,
ChecklistItemI3D: 0,
I3D: 2,
NewValue: '1',
OldValue: '0',
Property: 'IsAdHoc',
Version: 1
},
{
ChangedBy: {
Availability: 0,
BranchI3D: 0,
DefaultStorageI3D: null,
Dispatcher: false,
DisplayText: 'Administrator, c-entron (ADMIN)',
Email: 'vertrieb@c-entron.de',
Employeenumber: null,
FirstName: 'c-entron',
FullName: 'Administrator, c-entron (ADMIN)',
I3D: 22,
IsActive: true,
LastAvailabilityChange: null,
LastName: 'Administrator',
LeavingDate: DateTime,
Phone1: '0731-140399-0',
RemainingDaysOfVacation: 28.0,
ShortSign: 'ADMIN',
State: 1,
SupportLevel: null,
Template1: false,
Template2: false,
Template3: false,
Template4: false,
VacationEntitlement: 30.0
},
ChangedDate: DateTime,
ChecklistItemI3D: 0,
I3D: 3,
NewValue: 'Updated',
OldValue: 'Test',
Property: 'Caption',
Version: 2
}
],
CheckedBy: null,
CheckedDate: null,
ChecklistI3D: null,
ChecklistItems: [],
Description: null,
DurationTime: 0,
Editor: null,
I3D: 1,
InternalNote: null,
OrderNumber: 0,
ParentChecklistItemI3D: null,
State: 0
},
Error: null,
Message: null,
MessageCode: null,
Status: 0
}