Updated the configurations

This commit is contained in:
2019-02-03 19:44:36 -07:00
parent 85e59cc8dc
commit c37c8d2e87
2 changed files with 0 additions and 29 deletions
@@ -1,10 +1,5 @@
package edu.msudenver.tsp.persistence.manager;
import edu.msudenver.tsp.persistence.dao.DefinitionDao;
import edu.msudenver.tsp.persistence.dao.NotationDao;
import edu.msudenver.tsp.persistence.dao.ProofDao;
import edu.msudenver.tsp.persistence.dao.TheoremDao;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
@@ -14,23 +9,4 @@ import org.springframework.context.annotation.PropertySource;
@PropertySource("classpath:development.properties")
public class ManagerConfig {
@Bean
public TheoremManager theoremManager() {
return new TheoremManager(new TheoremDao());
}
@Bean
public DefinitionManager definitionManager() {
return new DefinitionManager(new DefinitionDao());
}
@Bean
public ProofManager proofManager() {
return new ProofManager(new ProofDao());
}
@Bean
public NotationManager notationManager() {
return new NotationManager(new NotationDao());
}
}