using DigitalData.Modules.Database; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace ChangeloggerMVC { public interface IDatabase { public MSSQLServer MSSQL { get; set; } Dictionary GetProducts(); Dictionary GetModules(); Dictionary GetTypes(); } }