using ERP.Model; using System; using System.Collections.Generic; namespace ERP.Dal.Interface { public interface IEmployeeDeviceMapService { Result InsertEmployeeDeviceAttendance(EmployeeDeviceMapModel p_EmployeeDeviceMap); Result> GetAllEmployeeDeviceAttendanceByDeviceId(Guid p_DeviceId); Result> GetAllEmployeeDeviceAttendance(); Result> GetEmployeeEnrolls(Guid p_DeviceId); } }