public ServiceResult <VrstaPovrsine> Update(VrstaPovrsine vrstaPovrsine) { _vrstaPovrsineRepository.Update(vrstaPovrsine); _vrstaPovrsineRepository.SaveChanges(); return(new ServiceResult <VrstaPovrsine>(true, "Vrsta povrsine uspesno izmenjena.", vrstaPovrsine)); }
public ServiceResult <VrstaPovrsine> Delete(VrstaPovrsine vrstaPovrsine) { _vrstaPovrsineRepository.Delete(vrstaPovrsine); _vrstaPovrsineRepository.SaveChanges(); return(new ServiceResult <VrstaPovrsine>(true, "Vrsta povrsine uspesno izbrisana.")); }
public ServiceResult <VrstaPovrsine> Add(VrstaPovrsine vrstaPovrsine) { _vrstaPovrsineRepository.Add(vrstaPovrsine); _vrstaPovrsineRepository.SaveChanges(); return(new ServiceResult <VrstaPovrsine>(true, "Vrsta povrsine uspesno dodata.", vrstaPovrsine)); }
public IActionResult Post([FromBody] VrstaPovrsine vrstaPovrsine) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } var result = _vrstaPovrsineService.Add(vrstaPovrsine); if (result.Success) { return(Ok(result)); } return(BadRequest(result)); }