mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-23 18:02:23 +00:00
12 lines
245 B
C#
12 lines
245 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace FSO.Server.Database.DA.LotVisitTotals
|
|||
|
{
|
|||
|
public interface ILotVisitTotals
|
|||
|
{
|
|||
|
void Insert(IEnumerable<DbLotVisitTotal> input);
|
|||
|
void Purge(DateTime date);
|
|||
|
}
|
|||
|
}
|