รวม code จากทุกคน ที่แก้ไข op ล่าสุด
This commit is contained in:
28
Models/eva_idp_plan/Ieva_idp_planService.cs
Normal file
28
Models/eva_idp_plan/Ieva_idp_planService.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
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();
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user