79687067

Date: 2025-07-02 08:15:48
Score: 1
Natty:
Report link

Do this for KullaniciKayit. You are getting undefined because return Ok(result) returns ActionResult but your result is not

[HttpPost]
public async Task<ActionResult<Kullanici>> KullaniciKayit(Kullanici model)
{
    var result = await _kullaniciService.KullaniciKayit(model);
    return Ok(result);
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Caner