개정판 a70b7d46
BiddersViewModel 서비스 호출 수정
Change-Id: Ifcb3616ad6b8941d0a0b871afa3e9bf7021a181a
KCOM/ViewModel/BiddersViewModel.cs | ||
---|---|---|
77 | 77 |
|
78 | 78 |
#region UI에 대한 이벤트 |
79 | 79 |
|
80 |
public AsyncCommand RefreshCommand => new AsyncCommand(()=> OnGetBiddersDataAsync()); |
|
81 |
|
|
82 | 80 |
public RelayCommand AddVPCommentCommand => new RelayCommand(x => OnAddVPCommentCommand(x)); |
83 | 81 |
|
84 | 82 |
public RelayCommand DelVPCommentCommand => new RelayCommand(x => OnDelVPCommentCommand(x)); |
... | ... | |
402 | 400 |
string userId = deleteComment.createdBy; |
403 | 401 |
string commentId = deleteComment.commentId; |
404 | 402 |
|
405 |
var result = await pemssServiceClient.RemoveRequirementCommentAsync(projectNo, docId, mdId, commentId, userId);
|
|
403 |
var result = await pemssServiceClient.RemoveBiddersCommentAsync(projectNo, docId, mdId, commentId, userId);
|
|
406 | 404 |
|
407 | 405 |
} |
408 | 406 |
catch (Exception) |
... | ... | |
442 | 440 |
|
443 | 441 |
bool condition = addrequirement.IsContition; |
444 | 442 |
|
445 |
var result = await pemssServiceClient.SetRequirementCommentAsync(projectNo,docId, bdId, markupId,commentOnMarkup,condition,userId);
|
|
443 |
var result = await pemssServiceClient.SetBiddersCommentAsync(projectNo,docId, bdId, markupId,commentOnMarkup,condition,userId);
|
|
446 | 444 |
|
447 | 445 |
await OnGetBiddersDataAsync(false); |
448 | 446 |
} |
내보내기 Unified diff