Add integer data area type id
This commit is contained in:
@@ -373,6 +373,7 @@ namespace C4IT.LIAM
|
|||||||
public string Description { get; set; }
|
public string Description { get; set; }
|
||||||
public string UniqueId { get; set; }
|
public string UniqueId { get; set; }
|
||||||
public string DataAreaType { get; set; }
|
public string DataAreaType { get; set; }
|
||||||
|
public int DataAreaTypeId { get; set; }
|
||||||
}
|
}
|
||||||
public class LiamApiVersionInfo
|
public class LiamApiVersionInfo
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1178,6 +1178,7 @@ where ";
|
|||||||
Level = DataArea.Level.ToString(),
|
Level = DataArea.Level.ToString(),
|
||||||
ConfigurationId = ProviderEntry.ObjectID.ToString(),
|
ConfigurationId = ProviderEntry.ObjectID.ToString(),
|
||||||
DataAreaType = DataArea.DataType.ToString(),
|
DataAreaType = DataArea.DataType.ToString(),
|
||||||
|
DataAreaTypeId = (int)DataArea.DataType,
|
||||||
Owner = owner,
|
Owner = owner,
|
||||||
Write = write,
|
Write = write,
|
||||||
Read = DataAreaNtfsFolder?.ReadGroupIdentifier ?? string.Empty,
|
Read = DataAreaNtfsFolder?.ReadGroupIdentifier ?? string.Empty,
|
||||||
|
|||||||
@@ -669,7 +669,8 @@ namespace LiamWorkflowActivities
|
|||||||
ConfigurationId = configurationId ?? string.Empty,
|
ConfigurationId = configurationId ?? string.Empty,
|
||||||
BaseFolder = ntfsFolder?.Share?.TechnicalName ?? dataArea.Provider?.RootPath ?? string.Empty,
|
BaseFolder = ntfsFolder?.Share?.TechnicalName ?? dataArea.Provider?.RootPath ?? string.Empty,
|
||||||
UniqueId = dataArea.UID ?? string.Empty,
|
UniqueId = dataArea.UID ?? string.Empty,
|
||||||
DataAreaType = dataArea.DataType.ToString()
|
DataAreaType = dataArea.DataType.ToString(),
|
||||||
|
DataAreaTypeId = (int)dataArea.DataType
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user