mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-21 09:11:20 +00:00
- NioTSO client isn't needed because we're using RayLib - Added FreeSO's API server to handle most backend operations
15 lines
432 B
C#
Executable file
15 lines
432 B
C#
Executable file
using FSO.Server.Database.DA.Tuning;
|
|
using System.Collections.Generic;
|
|
|
|
namespace FSO.Server.Database.DA.DynPayouts
|
|
{
|
|
public interface IDynPayouts
|
|
{
|
|
List<DbTransSummary> GetSummary(int limitDay);
|
|
bool InsertDynRecord(List<DbDynPayout> dynPayout);
|
|
bool ReplaceDynTuning(List<DbTuning> dynTuning);
|
|
|
|
List<DbDynPayout> GetPayoutHistory(int limitDay);
|
|
bool Purge(int limitDay);
|
|
}
|
|
}
|