using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using TTSW.EF; using TTSW.Utils; using TTSW.Constant; using TTSW.Common; using TodoAPI2.Models; namespace TodoAPI2.Models { public interface Ieva_idp_planService : IBaseService { new eva_idp_planViewModel Insert(eva_idp_planInputModel model); new eva_idp_planViewModel Update(int id, eva_idp_planInputModel model); List GetListBycreate_evaluation_detail_id(int? create_evaluation_detail_id); List GetListBySearch(eva_idp_planSearchModel model); string UpdateMultiple(List model); eva_idp_planWithSelectionViewModel GetWithSelection(int id); eva_idp_planWithSelectionViewModel GetBlankItem(); void RefreshAutoFieldOfAllData(); } }