コード例 #1
0
 public TableInformationDatabaseAgent(IBusinessObject businessObject)
     : base(businessObject)
 {
     InsertCommand = new TableInformationInsertCommand(this);
     UpdateCommand = new TableInformationUpdateCommand(this);
     DeleteCommand = new TableInformationDeleteCommand(this);
     SelectCommand = new TableInformationSelectCommand(this, TableInformationQuery.SelectQuery);
 }
コード例 #2
0
 public TableInformationDatabaseAgent(IBusinessObjectCollection businessObjectCollection)
     : base(businessObjectCollection)
 {
     SelectAllCommand = new TableInformationSelectCommand(this, TableInformationQuery.SelectAllQuery);
 }