Somehow missed this with earlier checkin of fluent interface.
[castle.git] / Tools / DynamicProxy / Castle.DynamicProxy.Tests / Classes / ClassWithConstructors.cs
blob7b59622d3c7ff9a7f7f6ed2c8d9ecb5178066b8a
1 // Copyright 2004-2007 Castle Project - http://www.castleproject.org/
2 //
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
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
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 implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 namespace Castle.DynamicProxy.Test.Classes
17 using System;
18 using System.Collections;
20 /// <summary>
21 /// Summary description for ClassWithConstructors.
22 /// </summary>
23 public class ClassWithConstructors
25 IList list;
26 IDictionary dic;
28 public ClassWithConstructors(IList list)
30 this.list = list;
33 public ClassWithConstructors(IList list, IDictionary dic) : this(list)
35 this.dic = dic;
38 public IList List
40 get { return list; }
43 public IDictionary Dictionary
45 get { return dic; }