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> GetAttendance(Infrastructure.Dto.TimeKeeping.AttendanceDto dto); Task> GetAttendanceToday(CredentialDto dto); Task PostPutAttendance(Infrastructure.Dto.TimeKeeping.AttendanceDto dto); } }