10 lines
259 B
C#
10 lines
259 B
C#
|
|
using CPATapi.Server.Models;
|
||
|
|
|
||
|
|
namespace CPATapi.Server.Interfaces;
|
||
|
|
|
||
|
|
public interface IZeitConsensRepository : IRepository
|
||
|
|
{
|
||
|
|
Task<IEnumerable<string>> GetUsersAsync();
|
||
|
|
Task<IEnumerable<Stamp>> GetStampsAsync(string user, DateTime from, DateTime to);
|
||
|
|
}
|