예제 #1
0
파일: Update.cs 프로젝트: windischb/PgSql
 public Update(string table, string alias)
 {
     _updateDestination = new UpdateDestinationTable(table, alias);
 }
예제 #2
0
 public Controller(IUpdateDestination updateDestinationView)
 {
     updateDestination_View = updateDestinationView;
 }
예제 #3
0
파일: Update.cs 프로젝트: windischb/PgSql
 public Update(string table)
 {
     _updateDestination = new UpdateDestinationTable(table);
 }