22 lines
728 B
C#
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);
|
|
}
|
|
}
|