| |||||||||||||||||
Source File | Conditionals | Statements | Methods | TOTAL | |||||||||||||
Seasar.Dao.Tests.Impl\IdentityTable.cs | - | 0.0% | 0.0% | 0.0% |
|
1 | using System; | |
2 | using Seasar.Dao.Attrs; | |
3 | ||
4 | namespace Seasar.Dao.Tests.Impl | |
5 | { | |
6 | /// <summary> | |
7 | /// IdentityTable の概要の説明です。 | |
8 | /// </summary> | |
9 | public class IdentityTable | |
10 | { | |
11 | private int myid; | |
12 | ||
13 | private String idName; | |
14 | ||
15 | 0 | [ID("identity")] |
16 | [Column("ID")] | |
17 | public int Myid | |
18 | { | |
19 | set { myid = value; } | |
20 | get { return myid; } | |
21 | } | |
22 | ||
23 | 0 | public String Name |
24 | { | |
25 | set { idName = value; } | |
26 | get { return idName; } | |
27 | } | |
28 | } | |
29 | } | |
30 |
|