public IActionResult add(Brand brand) { var result = _brandService.AddToSystem(brand); if (result.Success) { return(Ok(result)); } return(BadRequest(result)); }