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_salary_cylinderService : IBaseService<int, eva_salary_cylinderInputModel, eva_salary_cylinderViewModel>
|
|
{
|
|
new eva_salary_cylinderViewModel Insert(eva_salary_cylinderInputModel model);
|
|
new eva_salary_cylinderViewModel Update(int id, eva_salary_cylinderInputModel model);
|
|
List<eva_salary_cylinderViewModel> GetListByposition_type(int? position_type);
|
|
List<eva_salary_cylinderViewModel> GetListBySearch(eva_salary_cylinderSearchModel model);
|
|
|
|
string UpdateMultiple(List<eva_salary_cylinderInputModel> model);
|
|
eva_salary_cylinderWithSelectionViewModel GetWithSelection(int id);
|
|
eva_salary_cylinderWithSelectionViewModel GetBlankItem();
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|