Iniziato rename progetti: Step --> Termo.Active

This commit is contained in:
Samuele Locatelli
2020-04-08 19:39:09 +02:00
parent cb5c0e0b98
commit 90811d5bdb
189 changed files with 18068 additions and 18068 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.ConfigModels
namespace Termo.Active.Model.ConfigModels
{
public class AlarmsConfigModel
{
+1 -1
View File
@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.ConfigModels
namespace Termo.Active.Model.ConfigModels
{
public class AreasConfigModel
{
@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.ConfigModels
namespace Termo.Active.Model.ConfigModels
{
public class CmsConnectConfigModel
{
+1 -1
View File
@@ -5,7 +5,7 @@ using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.ConfigModels
namespace Termo.Active.Model.ConfigModels
{
[DataContract]
public class ExtSoftwareModel
+15 -15
View File
@@ -1,16 +1,16 @@
using System.Collections.Generic;
using static Step.Model.Constants;
namespace Step.Model.ConfigModels
{
public class HeadsConfigModel
{
public int Id;
public HEAD_TYPE Type;
public short WarningLimit;
public short AlarmLimit;
public bool FixedHead;
public Dictionary<string, string> LocalizedNames { get; set; }
}
}
using static Termo.Active.Model.Constants;
namespace Termo.Active.Model.ConfigModels
{
public class HeadsConfigModel
{
public int Id;
public HEAD_TYPE Type;
public short WarningLimit;
public short AlarmLimit;
public bool FixedHead;
public Dictionary<string, string> LocalizedNames { get; set; }
}
}
@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.ConfigModels
namespace Termo.Active.Model.ConfigModels
{
public class MagazineNamesModel
{
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
namespace Step.Model.ConfigModels
namespace Termo.Active.Model.ConfigModels
{
public class MaintenanceConfigModel
{
+2 -2
View File
@@ -3,9 +3,9 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static Step.Model.Constants;
using static Termo.Active.Model.Constants;
namespace Step.Model
namespace Termo.Active.Model
{
public class ErrorMessageModel
{
+1 -1
View File
@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.ConfigModels
namespace Termo.Active.Model.ConfigModels
{
public class NcConfigModel
{
+1 -1
View File
@@ -1,4 +1,4 @@
namespace Step.Model.ConfigModels
namespace Termo.Active.Model.ConfigModels
{
public class NcSoftKeysModel
{
+1 -1
View File
@@ -5,7 +5,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.ConfigModels
namespace Termo.Active.Model.ConfigModels
{
public class ServerConfigModel
{
@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.ConfigModels
namespace Termo.Active.Model.ConfigModels
{
public class SoftwareProdConfigModel
{
@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.ConfigModels
namespace Termo.Active.Model.ConfigModels
{
public class ToolManagerConfigModel
{
@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.ConfigModels
namespace Termo.Active.Model.ConfigModels
{
public class ToolTypeConfigModel
{
@@ -1,26 +1,26 @@
using System.Collections.Generic;
using static Step.Model.Constants;
namespace Step.Model.ConfigModels
{
public class UserSoftKeyConfigModel
{
public int Id { get; set; }
public Dictionary<string, string> LocalizedNames { get; set; }
public int Category { get; set; }
public bool IsActive { get; set; }
public bool IsVisible { get; set; }
public bool OperatorConfirmationNeeded { get; set; }
public List<SubKeysModel> SubKeys { get; set; }
public int PlcId { get; set; }
public SOFTKEY_TYPE Type { get; set; }
}
public class SubKeysModel
{
public int Id;
public int PlcId;
using System.Collections.Generic;
using static Termo.Active.Model.Constants;
namespace Termo.Active.Model.ConfigModels
{
public class UserSoftKeyConfigModel
{
public int Id { get; set; }
public Dictionary<string, string> LocalizedNames { get; set; }
public int Category { get; set; }
public bool IsActive { get; set; }
public bool IsVisible { get; set; }
public bool OperatorConfirmationNeeded { get; set; }
public List<SubKeysModel> SubKeys { get; set; }
public int PlcId { get; set; }
public SOFTKEY_TYPE Type { get; set; }
}
public class SubKeysModel
{
public int Id;
public int PlcId;
public bool IsActive;
public string Text;
}
}
public string Text;
}
}