mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-21 09:11:20 +00:00
13 lines
325 B
C#
13 lines
325 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace FSO.Server.Database.DA.LotAdmit
|
|||
|
{
|
|||
|
public interface ILotAdmit
|
|||
|
{
|
|||
|
List<DbLotAdmit> GetLotInfo(int lot_id);
|
|||
|
List<uint> GetLotAdmitDeny(int lot_id, byte admit_mode);
|
|||
|
void Create(DbLotAdmit bookmark);
|
|||
|
bool Delete(DbLotAdmit bookmark);
|
|||
|
}
|
|||
|
}
|