First Initial
This commit is contained in:
28
Models/eva_evaluation_group/Ieva_evaluation_groupService.cs
Normal file
28
Models/eva_evaluation_group/Ieva_evaluation_groupService.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_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();
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user