public void BusinessListBaseFactory_Can_Create_Factory()
        {
            BusinessListBaseServerFactory<ProductList, Product> factory = new BusinessListBaseServerFactory<ProductList, Product>(_repository);

            Assert.IsNotNull(factory);
        }
 public void Test_Setup()
 {
     SetupTest();
     _repository = MockRepository.GenerateStub<IRepository<Product>>(); //_mocks.DynamicMock<IRepository<Product>>();
     _factory = new BusinessListBaseServerFactory<ProductList, Product>(_repository);
 }