mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-21 17:11:30 +00:00
16 lines
432 B
C#
16 lines
432 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|