20 lines
394 B
C#
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();
|
|
}
|
|
}
|