รวม code จากทุกคน ที่แก้ไข op ล่าสุด

This commit is contained in:
Nakorn Rientrakrunchai
2020-04-05 22:57:02 +07:00
parent 6135a2ec09
commit 9ffe9c30d3
46 changed files with 2636 additions and 529 deletions

View 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();
}
}