This commit is contained in:
2026-04-17 14:55:32 -04:00
commit bc3ac1d4c9
18017 changed files with 4371742 additions and 0 deletions

View File

@@ -0,0 +1,125 @@
namespace DatabaseImport
{
public class DbOperationsEnum
{
public enum StoredProcedure
{
sp_UserDelete,
sp_UserGet,
sp_UserGetIdsAll,
sp_CalculatedChannelsGet,
sp_CustomerDetailsDelete,
sp_CustomerDetailsGet,
sp_DASChannelsGet,
sp_DASDelete,
sp_DASGet,
sp_DBImportCustomerDetails,
sp_DBImportDASList,
sp_DBImportDbVersions,
sp_DBImportGroup,
sp_DBImportGroupTemplate,
sp_DBImportLabDetails,
sp_DBImportLastUsedHardware,
sp_DBImportMMEDirections,
sp_DBImportMMEFineLocations1,
sp_DBImportMMEFineLocations2,
sp_DBImportMMEFineLocations3,
sp_DBImportMMEMainLocations,
sp_DBImportMMEPhysicalDimensions,
sp_DBImportMMEPositions,
sp_DBImportMMEPossibleChannels,
sp_DBImportMMETestObjects,
sp_DBImportSensorModel,
sp_DBImportSensors,
sp_DBImportSensorsCalibration,
sp_DBImportSettings,
sp_DBImportTagAssignments,
sp_DBImportTags,
sp_DBImportTemplateRegions,
sp_DBImportTemplateZones,
sp_DBImportTestEngineerDetails,
sp_DBImportTestSetups,
sp_DBImportUIItems,
sp_DBImportUIItemSettings,
sp_DBImportUsers,
sp_DefaultPropertiesGet,
sp_LabratoryDetailsDelete,
sp_LabratoryDetailsGet,
sp_LevelTriggersGet,
sp_MMEDirectionsDelete,
sp_MMEDirectionsGet,
sp_MMEDirectionsGetCustom,
sp_MMEFiguresGet,
sp_MMEFiguresGetCustom,
sp_MMEFilterClassesDelete,
sp_MMEFilterClassesGet,
sp_MMEFilterClassesGetCustom,
sp_MMEFineLocations1Delete,
sp_MMEFineLocations1Get,
sp_MMEFineLocations1GetCustom,
sp_MMEFineLocations2Delete,
sp_MMEFineLocations2Get,
sp_MMEFineLocations2GetCustom,
sp_MMEFineLocations3Delete,
sp_MMEFineLocations3Get,
sp_MMEFineLocations3GetCustom,
sp_MMEMainLocationsDelete,
sp_MMEMainLocationsGet,
sp_MMEMainLocationsGetCustom,
sp_MMEPhysicalDimensionsDelete,
sp_MMEPhysicalDimensionsGet,
sp_MMEPhysicalDimensionsGetCustom,
sp_MMEPositionsDelete,
sp_MMEPositionsGet,
sp_MMEPositionsGetCustom,
sp_MMEPossibleChannelsDelete,
sp_MMEPossibleChannelsGet,
sp_MMEPossibleChannelsGetCustom,
sp_MMETestObjectsDelete,
sp_MMETestObjectsGet,
sp_MMETestObjectsGetCustom,
sp_MMETestObjectsUpdateInsert,
sp_TemplateChannelsGet,
sp_TemplateRegionsGet,
sp_TemplateZonesGet,
sp_TestChannelSettingsGet,
sp_TestEngineerDetailsDelete,
sp_TestEngineerDetailsGet,
sp_TestGraphsGet,
sp_TestObjectChannelSettingsGet,
sp_TestObjectHardwareIdsGet,
sp_TestObjectSensorsGet,
sp_TestObjectsDelete,
sp_TestObjectsGet,
sp_TestObjectTemplatesDelete,
sp_TestObjectTemplatesGet,
sp_TestSetupDASSettingsGet,
sp_TestSetupHardwareGet,
sp_TestSetupObjectMetaDataGet,
sp_TestSetupObjectsGet,
sp_TestSetupsDeleteAll,
sp_TestSetupsGet,
sp_TestSetupsUpdateInsert,
sp_TestSetupsIsCompleteUpdate,
sp_SensorCalibrationsDelete,
sp_SensorCalibrationsGet,
sp_SensorDeleteAll,
sp_SensorsDeleteAll,
sp_SensorsAnalogGet,
sp_SensorsDigitalInGet,
sp_SensorsDigitalOutGet,
sp_SensorsSquibGet,
sp_SensorModelsDelete,
sp_SensorModelsGet,
sp_SettingsGet,
sp_SettingsUpdateInsert,
sp_TagsDelete,
sp_TagsGet,
sp_UIItemsDelete,
sp_UIItemsGet,
sp_UserPropertiesInsert,
sp_DbVersionDelete,
sp_DbVersionGet,
}
}
}