public async Task <ResponceModel> Update([FromRoute] int id, [FromBody] SectorDTO model) { var identifier = User.Claims.FirstOrDefault(p => p.Type == "id"); if (identifier == null) { return(new ResponceModel(401, "FAILED", null, new string[] { "Yetkilendirme Hatası." })); } if (id == 0) { return(new ResponceModel(404, "ERROR", null, new string[] { "Güncellenecek veri bulunamadı." })); } try { var sector = await sectorService.Get(id); if (sector == null) { return(new ResponceModel(404, "ERROR", null, new string[] { "Güncellenecek veri bulunamadı." })); } sector = model.Adapt <Sector>(); sectorService.Update(sector); if (await sectorService.SaveChanges()) { return(new ResponceModel(200, "OK", sector, null)); } else { return(new ResponceModel(400, "ERROR", null, new string[] { "Veri güncellenirken sorun oluştu." })); } } catch (Exception ex) { await _logService.Add(new SystemLog() { Content = ex.Message, CreateDate = DateTime.Now, UserId = 0, EntityName = sectorService.GetType().Name }); return(new ResponceModel(500, "ERROR", null, new string[] { "Veri güncellenirken sorun oluştu." })); } }