Exemple #1
0
 public IActionResult Rejestracja([FromBody] GraczDTO graczDTO)
 {
     return(_serviceContext.RegisterInAction(graczDTO));
 }
Exemple #2
0
 public IActionResult Authenticate([FromBody] GraczDTO graczDto)
 {
     return(_serviceContext.AuthenticateInAction(graczDto.Login, graczDto.Haslo));
 }