public IProductRepository GetProductRepo()
        {
            var repo = new ProductRepository(WingtipToysDbContextFactoryFake.GetDbContext());

            return(repo);
        }
        public ICategoryRepository GetCategoryRepo()
        {
            var repo = new CategoryRepository(WingtipToysDbContextFactoryFake.GetDbContext());

            return(repo);
        }