コード例 #1
0
 public bool UpdateAward(Guid id, string title) => daoAwards.UpdateAward(new Award(id, title));
コード例 #2
0
 public bool UpdateAward(int awardID, string title, string description)
 {
     awardsDAO.UpdateAward(awardID, title, description);
     return(true);
 }
コード例 #3
0
ファイル: BLOAwardsL.cs プロジェクト: IgorBrv/xt_net_web
 public bool UpdateAward(Guid id, string title, string emblempath = null) => daoAwards.UpdateAward(new Award(id, title, emblempath));