|
|
@ -18,6 +18,7 @@ namespace CK.SCP.Models |
|
|
|
private static List<User> _usersList; |
|
|
|
private static List<TB_RECEIVE> _ReceiveList; |
|
|
|
private static List<TB_FACTORY> _FactoryList; |
|
|
|
private static List<TB_ADDRESS> _ADRESSList; |
|
|
|
private static List<TA_REVICE_PORT> _PortList; |
|
|
|
private static ScpConfig _config; |
|
|
|
public static ScpConfig Config |
|
|
@ -234,6 +235,18 @@ namespace CK.SCP.Models |
|
|
|
set { _FactoryList = value; } |
|
|
|
} |
|
|
|
|
|
|
|
public static List<TB_ADDRESS> ADRESSList |
|
|
|
{ |
|
|
|
get |
|
|
|
{ |
|
|
|
|
|
|
|
_ADRESSList = ScpDb.TB_ADDRESS.ToList(); |
|
|
|
|
|
|
|
return _ADRESSList; |
|
|
|
} |
|
|
|
set { _ADRESSList = value; } |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private static List<TA_LANGUAGE> _LangauageList; |
|
|
|
public static List<TA_LANGUAGE> LangauageList |
|
|
|