29 lines
937 B
C#
29 lines
937 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_evaluation_groupService : IBaseService<Guid, eva_evaluation_groupInputModel, eva_evaluation_groupViewModel>
|
|
{
|
|
new eva_evaluation_groupViewModel Insert(eva_evaluation_groupInputModel model);
|
|
new eva_evaluation_groupViewModel Update(Guid id, eva_evaluation_groupInputModel model);
|
|
List<eva_evaluation_groupViewModel> GetListBycode(string code);
|
|
List<eva_evaluation_groupViewModel> GetListBySearch(eva_evaluation_groupSearchModel model);
|
|
|
|
string UpdateMultiple(List<eva_evaluation_groupInputModel> model);
|
|
eva_evaluation_groupWithSelectionViewModel GetWithSelection(Guid id);
|
|
eva_evaluation_groupWithSelectionViewModel GetBlankItem();
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|