Relaxed the need for Types that represent database boundaries to extend from ActiveRe...
[castle.git] / Samples / Castle / PetStore.Web / controllers.config
blobffd444b27b453bf93f61e6edd900d143e2760974
1 <?xml version="1.0" encoding="utf-8" ?>
2 <configuration>
4 <components>
6 <component
7 id="admin.controller"
8 type="PetStore.Web.Controllers.Admin.AdminController, PetStore.Web" />
10 <component
11 id="category.mng.controller"
12 type="PetStore.Web.Controllers.Admin.CategoryManagementController, PetStore.Web" />
14 <component
15 id="product.mng.controller"
16 type="PetStore.Web.Controllers.Admin.ProductManagementController, PetStore.Web" >
17 <parameters>
18 <ProductImagesDir>#{productimagesdir}</ProductImagesDir>
19 </parameters>
20 </component>
22 <component
23 id="home.controller"
24 type="PetStore.Web.Controllers.HomeController, PetStore.Web" />
26 <component
27 id="cart.controller"
28 type="PetStore.Web.Controllers.CartController, PetStore.Web" />
30 <component
31 id="product.controller"
32 type="PetStore.Web.Controllers.ProductController, PetStore.Web" />
34 <component
35 id="ImageLocationComponent"
36 type="PetStore.Web.Components.ImageLocationComponent, PetStore.Web">
37 <parameters>
38 <ProductImagesDir>#{productimagesdir}</ProductImagesDir>
39 </parameters>
40 </component>
42 </components>
44 </configuration>