29 lines
874 B
C#
29 lines
874 B
C#
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<int, eva_idp_planInputModel, eva_idp_planViewModel>
|
|
{
|
|
new eva_idp_planViewModel Insert(eva_idp_planInputModel model);
|
|
new eva_idp_planViewModel Update(int id, eva_idp_planInputModel model);
|
|
List<eva_idp_planViewModel> GetListBycreate_evaluation_detail_id(int? create_evaluation_detail_id);
|
|
List<eva_idp_planViewModel> GetListBySearch(eva_idp_planSearchModel model);
|
|
|
|
string UpdateMultiple(List<eva_idp_planInputModel> model);
|
|
eva_idp_planWithSelectionViewModel GetWithSelection(int id);
|
|
eva_idp_planWithSelectionViewModel GetBlankItem();
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|