1 // Copyright 2004-2007 Castle Project - http://www.castleproject.org/
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
7 // http://www.apache.org/licenses/LICENSE-2.0
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or Chainied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 namespace Castle
.MicroKernel
.Tests
.ClassComponents
17 public class CustomerChain1
: CustomerImpl
19 public ICustomer CustomerBase
;
21 public CustomerChain1(ICustomer customer
)
23 CustomerBase
= customer
;
27 public class CustomerChain2
: CustomerChain1
29 public CustomerChain2(ICustomer customer
) : base(customer
)
34 public class CustomerChain3
: CustomerChain1
36 public CustomerChain3(ICustomer customer
) : base(customer
)
41 public class CustomerChain4
: CustomerChain1
43 public CustomerChain4(ICustomer customer
) : base(customer
)
48 public class CustomerChain5
: CustomerChain1
50 public CustomerChain5(ICustomer customer
) : base(customer
)
55 public class CustomerChain6
: CustomerChain1
57 public CustomerChain6(ICustomer customer
) : base(customer
)
62 public class CustomerChain7
: CustomerChain1
64 public CustomerChain7(ICustomer customer
) : base(customer
)
69 public class CustomerChain8
: CustomerChain1
71 public CustomerChain8(ICustomer customer
) : base(customer
)
76 public class CustomerChain9
: CustomerChain1
78 public CustomerChain9(ICustomer customer
) : base(customer
)