コード例 #1
0
ファイル: EmployeeReader.cs プロジェクト: piotr07da/marcin
 public EmployeeReader(DatabaseExecutor databaseExecutor)
 {
     _databaseExecutor = databaseExecutor;
 }
コード例 #2
0
ファイル: EmployeeWriter.cs プロジェクト: piotr07da/marcin
 public EmployeeWriter(DatabaseExecutor databaseExecutor)
 {
     _databaseExecutor = databaseExecutor;
 }
コード例 #3
0
ファイル: DepartmentReader.cs プロジェクト: piotr07da/marcin
 public DepartmentReader(DatabaseExecutor databaseExecutor)
 {
     _databaseExecutor = databaseExecutor;
 }
コード例 #4
0
 public DepartmentWriter(DatabaseExecutor databaseExecutor)
 {
     _databaseExecutor = databaseExecutor;
 }