using ERP.Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ERP.Dal.Interface { public interface IShiftService { Result> GetShiftList(); Result DeleteShiftById(Guid p_ShiftId, Guid p_UserId); Result GetShiftById(Guid p_ShiftId); Result SaveShift(Shift p_Shift, Guid p_UserId); Result GetShiftByEmployeeId(Guid p_EmployeeId); } }