public void TearDown()
 {
     gateway = null;
     repository = null;
     builderPrototype = null;
 }
 public GetAllFeatureTypesInfosUseCase(IFeatureTypeInfoRepository repository)
 {
     this.repository = repository;
 }
 public void Setup()
 {
     gateway = Mock.Create<IGeoGateway>();
     builderPrototype = new FeatureTypeInfoBuilder();
     repository = new FeatureTypeInfoRepository(gateway, builderPrototype);
 }
 public GetAllFeatureTypesInfosUseCase(IFeatureTypeInfoRepository repository)
 {
     this.repository = repository;
 }