1
0
mirror of https://github.com/SirLecram/HospitalServerManager synced 2024-07-17 18:30:30 +02:00
admissionManager/InterfacesAndEnums/Interfaces.cs
2018-11-18 18:49:40 +01:00

19 lines
407 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalServerManager.InterfacesAndEnums
{
public interface ISqlTableModelable : IPrimaryKeyGetable
{
List<string> GetColumnNames();
}
public interface IPrimaryKeyGetable
{
string GetPrimaryKey();
string GetPrimaryKeyName();
}
}