1
0
mirror of https://github.com/SirLecram/HospitalServerManager synced 2024-09-18 17:38:04 +02:00
admissionManager/InterfacesAndEnums/Interfaces.cs

19 lines
407 B
C#
Raw Normal View History

2018-11-18 18:49:40 +01:00
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();
}
}