partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

services.xml (1276B)


      1 <?xml version="1.0" ?>
      2 
      3 <container xmlns="http://symfony.com/schema/dic/services"
      4            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      5            xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
      6 
      7     <services>
      8         <service id="partkeepr.part_measurement_unit_service"
      9                  class="PartKeepr\PartBundle\Services\PartMeasurementUnitService">
     10             <argument type="service" id="doctrine.orm.default_entity_manager"/>
     11         </service>
     12         <service id="partkeepr.part.category_service" class="PartKeepr\CategoryBundle\Services\CategoryService">
     13             <argument type="service" id="doctrine.orm.default_entity_manager"/>
     14             <argument>PartKeepr\PartBundle\Entity\PartCategory</argument>
     15         </service>
     16 
     17         <service id="partkeepr.part_service" class="PartKeepr\PartBundle\Services\PartService">
     18             <argument type="service" id="doctrine.orm.default_entity_manager"/>
     19             <argument type="service" id="doctrine_filter_service"/>
     20             <argument type="string">%partkeepr.parts.limit%</argument>
     21             <argument type="string">%partkeepr.parts.internalpartnumberunique%</argument>
     22         </service>
     23     </services>
     24 
     25 </container>