/************************************************************************************ * * Umbraco Data Layer * MIT Licensed work * ©2008 Ruben Verborgh * ***********************************************************************************/ using umbraco.DataLayer.Utility.Installer; using umbraco.DataLayer.Utility.Table; namespace umbraco.DataLayer.Utility { /// /// Interface for classes providing access to various Umbraco utilities /// that operate on data layer level. /// public interface IUtilitySet { /// /// Creates an installer. /// /// The installer. IInstallerUtility CreateInstaller(); /// /// Creates a table utility. /// /// The table utility ITableUtility CreateTableUtility(); } }