Exemplo n.º 1
0
 public BillingInfoSaveCommand(IDataSourceConfig dataSource, BillingInfoEntity billingInfo)
 {
     _rowMapper   = new BillingInfoRowMapper();
     _dataSource  = dataSource;
     _billingInfo = billingInfo;
 }
 public BillingInfoFIndByIdCommand(IDataSourceConfig dataSource, ulong id)
 {
     _rowMapper    = new BillingInfoRowMapper();
     _dataSource   = dataSource;
     _queryParamId = id;
 }
 public BillingInfoDeleteCommand(IDataSourceConfig dataSource, ulong id)
 {
     _rowMapper  = new BillingInfoRowMapper();
     _dataSource = dataSource;
     _id         = id;
 }