[HttpDelete("{Id}")] /*POSTMAN OK*/ public IActionResult Delete(int Id) { _lunchRepo.UnlinkEntityFromALL(Id); _lunchRepo.Delete(Id); return(Ok()); }