Fix Data
This commit is contained in:
@@ -16,8 +16,8 @@ namespace TodoAPI2.Models
|
||||
|
||||
public string org_id { get; set; }
|
||||
|
||||
public int? round_id { get; set; }
|
||||
|
||||
public Guid? round_id { get; set; }
|
||||
public string round_text { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -58,7 +58,7 @@ namespace TodoAPI2.Models
|
||||
var entity = _repository.Get(id);
|
||||
var i = Mapper.Map<rep_eva01WithSelectionViewModel>(entity);
|
||||
i.item_org_id = (from x in ext.GetDepartmentDataForReport() select x).ToList();
|
||||
i.item_round_id = (from x in ext.GetYesNo() select x).ToList();
|
||||
i.item_round_id = (from x in ext.GetEvaRound() select x).ToList();
|
||||
|
||||
|
||||
return i;
|
||||
|
||||
Reference in New Issue
Block a user