public IBOProductsAboveAveragePrice BOProductsAboveAveragePrice(IProductsAboveAveragePriceRepository repo)
        {
            BOProductsAboveAveragePrice boProductsAboveAveragePrice = (BOProductsAboveAveragePrice)BOProductsAboveAveragePrice();

            boProductsAboveAveragePrice.Repository = repo;
            return(boProductsAboveAveragePrice);
        }
        public IBOProductsAboveAveragePrice BOProductsAboveAveragePrice()
        {
            var boProductsAboveAveragePrice = new BOProductsAboveAveragePrice()
            {
                ProductName = this.ProductName,
                UnitPrice   = this.UnitPrice
            };

            return(boProductsAboveAveragePrice);
        }