public InvoicePaymentDeleteCommand(IDataSourceConfig dataSource, ulong id)
 {
     _rowMapper  = new InvoicePaymentRowMapper();
     _dataSource = dataSource;
     _id         = id;
 }
Exemple #2
0
 public InvoicePaymentSaveCommand(IDataSourceConfig dataSource, InvoicePaymentEntity InvoicePayment)
 {
     _rowMapper      = new InvoicePaymentRowMapper();
     _dataSource     = dataSource;
     _InvoicePayment = InvoicePayment;
 }
 public InvoicePaymentFindByIdCommand(IDataSourceConfig dataSource, ulong id)
 {
     _rowMapper    = new InvoicePaymentRowMapper();
     _dataSource   = dataSource;
     _queryParamId = id;
 }
Exemple #4
0
 public InvoicePaymentFindAllCommand(IDataSourceConfig dataSource)
 {
     _rowMapper  = new InvoicePaymentRowMapper();
     _dataSource = dataSource;
 }