Change Request/Feature OP เลขที่ 3217, 3200, 3216, 3219 ดำเนินการแล้ว

This commit is contained in:
Nakorn Rientrakrunchai
2020-08-20 21:11:56 +07:00
parent c2b65272e6
commit 72ac6d9cc9
13 changed files with 170 additions and 14 deletions

View File

@@ -67,7 +67,7 @@ namespace TodoAPI2.Models
}
public eva_create_evaluationWithSelectionViewModel GetWithSelection(int id)
{
var all_emp = emp.GetListByemployee_type(null, null);
var all_emp = emp.GetAllEmployee();
var entity = _repository.Get(id);
var i = Mapper.Map<eva_create_evaluationWithSelectionViewModel>(entity);
@@ -81,7 +81,7 @@ namespace TodoAPI2.Models
}
public eva_create_evaluationWithSelectionViewModel GetBlankItem()
{
var all_emp = emp.GetListByemployee_type(null, null);
var all_emp = emp.GetAllEmployee();
var i = new eva_create_evaluationWithSelectionViewModel();
i.item_performance_plan_id = (from x in _repository.Context.eva_performance_plan select x).ToList();