Minor style changes
[castle.git] / MonoRail / TestSiteARSupport / Model / SimplePerson.cs
blobd6b90616fe23d081ffbea1df6b4c4de556881fc9
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 TestSiteARSupport.Model
17 using System;
18 using Castle.ActiveRecord;
19 using Castle.Components.Validator;
21 [ActiveRecord("TSAS_SimplePerson")]
22 public class SimplePerson : ActiveRecordBase
24 private String _id;
25 private String _name;
26 private Int32 _age;
28 [PrimaryKey(PrimaryKeyType.UuidString)]
29 public String Id
31 get { return _id; }
32 set { _id = value; }
35 [Property, ValidateRegExp(@"^(?:\w| )+$")]
36 public String Name
38 get { return _name; }
39 set { _name = value; }
42 [Property]
43 public Int32 Age
45 get { return _age; }
46 set { _age = value; }
49 public override string ToString()
51 return "[" + _id + ":" + _name + ":" + _age + "]";
54 public static void DeleteAll()
56 ActiveRecordBase.DeleteAll(typeof(SimplePerson));
59 public static SimplePerson[] FindAll()
61 return (SimplePerson[]) ActiveRecordBase.FindAll(typeof(SimplePerson));
64 public static SimplePerson Find(int id)
66 return (SimplePerson) ActiveRecordBase.FindByPrimaryKey(typeof(SimplePerson), id);