Vytvořená agenda Služby. Servisní třídy agendy Materiál byly přesunuty

do balíku reqsubjects. 
closes #106
This commit is contained in:
2014-06-30 14:27:52 +02:00
parent 35131d555d
commit a637a077c0
23 changed files with 267 additions and 9 deletions
@@ -140,6 +140,10 @@
<property name="sessionFactory" ref="sessionFactory"/>
</bean>
<bean id="serviceItemDao" class="info.bukova.isspst.dao.jpa.ServiceItemDaoJPA">
<property name="sessionFactory" ref="sessionFactory"/>
</bean>
<!-- Business logic -->
<bean id="validator" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean"/>
@@ -192,7 +196,7 @@
<property name="dao" ref="permissionDao"/>
</bean>
<bean id="materialService" class="info.bukova.isspst.services.material.MaterialServiceImpl">
<bean id="materialService" class="info.bukova.isspst.services.reqsubjects.MaterialServiceImpl">
<property name="dao" ref="materialDao"/>
<property name="validator" ref="validator"/>
</bean>
@@ -216,4 +220,9 @@
<property name="dao" ref="numericSeriesDao" />
<property name="validator" ref="validator" />
</bean>
<bean id="serviceItemService" class="info.bukova.isspst.services.reqsubjects.ServiceItemServiceImpl">
<property name="dao" ref="serviceItemDao" />
<property name="validator" ref="validator" />
</bean>
</beans>