Files
hrm_eva/Models/eva_evaluation_achievement/Ieva_evaluation_achievementService.cs
2021-03-07 12:48:25 +07:00

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