Beispiel #1
0
 public void UpdateChallenge(Guid desafioId, Guid temporadaId, string name, DateTime startDate, DateTime endDate, int parameter, int goal, int prize, string description)
 {
     ChallengesBusiness.UpdateChallenge(desafioId, temporadaId, name, startDate, endDate, parameter, goal, prize, description);
 }
Beispiel #2
0
 public List <ChallengeEntity> GetCurrentChallengesPortal()
 {
     return(ChallengesBusiness.GetCurrentChallengesPortal());
 }
Beispiel #3
0
 public void InsertNewChallenge(Guid temporadaId, string name, DateTime startDate, DateTime endDate, int parameter, int goal, int prize, string description)
 {
     ChallengesBusiness.InsertNewChallenge(temporadaId, name, startDate, endDate, parameter, goal, prize, description);
 }
Beispiel #4
0
 public List <ChallengeEntity> GetCurrentChallenges(Guid temporadaId)
 {
     return(ChallengesBusiness.GetCurrentChallenges(temporadaId));
 }