2026-03-19 13:35:53 +01:00
|
|
|
using CPATapi.Server.Models;
|
|
|
|
|
|
|
|
|
|
namespace CPATapi.Server.Interfaces;
|
|
|
|
|
|
|
|
|
|
public interface IZeitConsensRepository : IRepository
|
|
|
|
|
{
|
2026-04-13 10:42:11 +02:00
|
|
|
Task<IEnumerable<Availability>> GetUsersAvailabilityAsync(DateTime from, DateTime to);
|
|
|
|
|
Task<Availability?> GetUserAvailabilityAsync(string user, DateTime from, DateTime to);
|
2026-03-19 13:35:53 +01:00
|
|
|
}
|