This commit is contained in:
2014-06-08 14:39:01 +02:00
19 changed files with 313 additions and 2 deletions
@@ -69,6 +69,9 @@ UsersGridColumnPersonalID=Osobní číslo
UsersGridColumnFirstName=Jméno
UsersGridColumnSureName=Příjmení
AgendaMaterial=Materiál
MaterialFormTitle=Materiál
ButtonStorno=Storno
ButtonSave=Uložit
@@ -120,6 +120,10 @@
<property name="sessionFactory" ref="sessionFactory"/>
</bean>
<bean id="materialDao" class="info.bukova.isspst.dao.jpa.MaterialDaoJPA">
<property name="sessionFactory" ref="sessionFactory"/>
</bean>
<!-- Business logic -->
<bean id="validator" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean"/>
@@ -171,5 +175,10 @@
<bean id="permissionService" class="info.bukova.isspst.services.users.PermissionServiceImpl">
<property name="dao" ref="permissionDao"/>
</bean>
<bean id="materialService" class="info.bukova.isspst.services.material.MaterialServiceImpl">
<property name="dao" ref="materialDao"/>
<property name="validator" ref="validator"/>
</bean>
</beans>