| |||||||||||||||||
Source File | Conditionals | Statements | Methods | TOTAL | |||||||||||||
Seasar.Dao.Tests.Interceptors\IEmployeeAutoDao.cs | - | - | - | - |
|
1 | using System; | |
2 | using System.Collections; | |
3 | using Seasar.Dao.Attrs; | |
4 | ||
5 | namespace Seasar.Dao.Tests.Interceptors | |
6 | { | |
7 | [Bean(typeof(Employee))] | |
8 | public interface IEmployeeAutoDao | |
9 | { | |
10 | ||
11 | Employee GetEmployee(int empno); | |
12 | ||
13 | [Query("sal BETWEEN /*minSal*/ and /*maxSal*/")] | |
14 | IList GetEmployeesBySal(float minSal, float maxSal); | |
15 | ||
16 | int Insert(Employee employee); | |
17 | ||
18 | } | |
19 | } | |
20 |
|