LSFE/LSFE.Domain/Contracts/TimeKeeping/IAttendanceRepo.cs
2026-07-30 10:31:04 +08:00

22 lines
728 B
C#

using DocumentFormat.OpenXml.Office2010.ExcelAc;
using LSFE.Infrastructure.Dto;
using LSFE.Infrastructure.Dto.TimeKeeping;
using LSFE.Infrastructure.Entities.TimeKeeping;
using LSFE.Infrastructure.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.Domain.Contracts.TimeKeeping
{
public interface IAttendanceRepo
{
Task<List<Infrastructure.Entities.TimeKeeping.AttendanceDto>>
GetAttendance(Infrastructure.Dto.TimeKeeping.AttendanceDto dto);
Task<List<Attendance>> GetAttendanceToday(CredentialDto dto);
Task<Response> PostPutAttendance(Infrastructure.Dto.TimeKeeping.AttendanceDto dto);
}
}