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_evaluation_achievementService : IBaseService { new eva_evaluation_achievementViewModel Insert(eva_evaluation_achievementInputModel model); new eva_evaluation_achievementViewModel Update(int id, eva_evaluation_achievementInputModel model); List GetListBycreate_evaluation_detail_id(int? create_evaluation_detail_id); List GetListBySearch(eva_evaluation_achievementSearchModel model); string UpdateMultiple(List model); eva_evaluation_achievementWithSelectionViewModel GetWithSelection(int id); eva_evaluation_achievementWithSelectionViewModel GetBlankItem(); } }