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 IInterviewService { Result> GetInterviewList(); Result GetInterviewByInterviewId(Guid p_InterviewId); Result DeleteInterviewById(Guid p_InterviewId, Guid p_UserId); Result GetTodayInterviewCount(); Result SaveInterview(Interview p_Interview, Guid p_UserId); } }