| |||||||||||||||||
Source File | Conditionals | Statements | Methods | TOTAL | |||||||||||||
Seasar.Dao.Tests.Impl\DepartmentAutoDao.cs | - | - | - | - |
|
1 | using System; | |
2 | using Seasar.Dao.Attrs; | |
3 | ||
4 | namespace Seasar.Dao.Tests.Impl | |
5 | { | |
6 | /// <summary> | |
7 | /// DepartmentAutoDao の概要の説明です。 | |
8 | /// </summary> | |
9 | [Bean(typeof(Department))] | |
10 | public interface DepartmentAutoDao | |
11 | { | |
12 | void Insert(Department department); | |
13 | ||
14 | //TODO:存在するとNotSupportedExceptionになる | |
15 | //void InsertBatch(Department[] departents); | |
16 | ||
17 | void Update(Department department); | |
18 | ||
19 | //TODO:存在するとNotSupportedExceptionになる | |
20 | //void UpdateBatch(Department[] departents); | |
21 | ||
22 | void Delete(Department department); | |
23 | ||
24 | //TODO:存在するとNotSupportedExceptionになる | |
25 | //void DeleteBatch(Department[] departents); | |
26 | ||
27 | } | |
28 | } | |
29 |
|