public static BrandViewModel CreateViewModel(this Brand brand)
        {
            var model = new BrandViewModel();

            brand.CopyToBrandViewModel(model);
            return(model);
        }