示例#1
0
 public bool UpdateMerchantBusinessProcessorInformation(MPMerchantProcessorInfoModel entity)
 {
     return merchantProfileRepository.UpdateMerchantBusinessProcessorInformation(entity);
 }
 public bool UpdateMerchantBusinessProcessorInformation(MPMerchantProcessorInfoModel entity)
 {
     return new DataAccess.DataAccess().ExecuteNonQuery("avz_MRC_spUpdateMerchantBusinessProcessorInformation", new
     {
         terminal = entity.Terminal,
         processorTypeId = entity.processorTypeId,
         processorNumber = entity.ProcessorNumber,
         dateGracePeriod = entity.DateGracePeriod,
         industryTypeID = entity.IndustryTypeID,
         firstProcessedDate = entity.FirstProcessedDate,
         processorId = entity.processorId
     });
 }