public IHttpActionResult Get()
        {
            var Brands = _IBrandManager.getAllBrands();

            return(Ok(Brands));
        }