Refactor IDataTypeConfigurationConnector for Deploy

This commit is contained in:
Stephan
2019-01-29 14:47:09 +01:00
parent f94e0fd3ec
commit cd5dc410cc
2 changed files with 4 additions and 5 deletions

View File

@@ -22,13 +22,13 @@ namespace Umbraco.Core.Deploy
/// </summary>
/// <param name="dataType">The datatype.</param>
/// <param name="dependencies">The dependencies.</param>
IDictionary<string, object> ToArtifact(IDataType dataType, ICollection<ArtifactDependency> dependencies);
string ToArtifact(IDataType dataType, ICollection<ArtifactDependency> dependencies);
/// <summary>
/// Gets the actual datatype configuration corresponding to the artifact configuration.
/// </summary>
/// <param name="dataType">The datatype.</param>
/// <param name="configuration">The artifact configuration.</param>
object FromArtifact(IDataType dataType, IDictionary<string, object> configuration);
object FromArtifact(IDataType dataType, string configuration);
}
}