using System.Collections.Generic; namespace OpenDBDiff.Abstractions.Schema.Model { public interface IDatabase : ISchemaBase { bool IsCaseSensitive { get; } SqlAction ActionMessage { get; } IOption Options { get; } new SQLScriptList ToSqlDiff(ICollection selectedSchemas); ISchemaBase Find(string objectFullName); } }