using MTWorkHR.Application.Models; using MTWorkHR.Core.Entities; using System.Threading.Tasks; namespace MTWorkHR.Application.Services.Interfaces { public interface IAttendanceService : IService { Task> GetAll(AttendancePagingInputDto PagingInputDto); Task GetAttendanceByUserId(string userId, DateTime attendanceDate); } }