示例#1
0
 public bool UpdateAward(Guid id, string title) => daoAwards.UpdateAward(new Award(id, title));
 public bool UpdateAward(int awardID, string title, string description)
 {
     awardsDAO.UpdateAward(awardID, title, description);
     return(true);
 }
示例#3
0
 public bool UpdateAward(Guid id, string title, string emblempath = null) => daoAwards.UpdateAward(new Award(id, title, emblempath));