コード例 #1
0
ファイル: TrophyService.cs プロジェクト: lucas-mv/pottiRoma
 public void InsertNewTrophy(Guid desafioId, Guid usuarioId, Guid temporadaId, string name, DateTime startDate, DateTime endDate, int parameter, int goal, int prize)
 {
     TrophiesBusiness.InsertNewTrophy(desafioId, usuarioId, temporadaId, name, startDate, endDate, parameter, goal, prize);
 }
コード例 #2
0
ファイル: TrophyService.cs プロジェクト: lucas-mv/pottiRoma
 public List <TrophyEntity> GetTrophies(Guid userId)
 {
     return(TrophiesBusiness.GetTrophies(userId));
 }