2021-09-15 16:21:04 +02:00

20 lines
394 B
C#

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<int,string> GetProducts();
Dictionary<int,string> GetModules();
Dictionary<int,string> GetTypes();
}
}