Example #1
0
 public ProducerQuerySetTests()
 {
     currentCompanyProducers              = A.Fake <ICurrentCompanyProducers>();
     existingProducerNames                = A.Fake <IExistingProducerNames>();
     existingProducerRegistrationNumbers  = A.Fake <IExistingProducerRegistrationNumbers>();
     currentProducersByRegistrationNumber = A.Fake <ICurrentProducersByRegistrationNumber>();
 }
 public ProducerQuerySetTests()
 {
     currentCompanyProducers = A.Fake<ICurrentCompanyProducers>();
     existingProducerNames = A.Fake<IExistingProducerNames>();
     existingProducerRegistrationNumbers = A.Fake<IExistingProducerRegistrationNumbers>();
     currentProducersByRegistrationNumber = A.Fake<ICurrentProducersByRegistrationNumber>();
 }
 public ProducerQuerySet(ICurrentProducersByRegistrationNumber currentProducersByRegistrationNumber,
     IExistingProducerNames existingProducerNames,
     IExistingProducerRegistrationNumbers existingProducerRegistrationNumbers,
     ICurrentCompanyProducers currentCompanyProducers)
 {
     this.currentProducersByRegistrationNumber = currentProducersByRegistrationNumber;
     this.existingProducerRegistrationNumbers = existingProducerRegistrationNumbers;
     this.existingProducerNames = existingProducerNames;
     this.currentCompanyProducers = currentCompanyProducers;
 }
Example #4
0
 public ProducerQuerySet(ICurrentProducersByRegistrationNumber currentProducersByRegistrationNumber,
                         IExistingProducerNames existingProducerNames,
                         IExistingProducerRegistrationNumbers existingProducerRegistrationNumbers,
                         ICurrentCompanyProducers currentCompanyProducers)
 {
     this.currentProducersByRegistrationNumber = currentProducersByRegistrationNumber;
     this.existingProducerRegistrationNumbers  = existingProducerRegistrationNumbers;
     this.existingProducerNames   = existingProducerNames;
     this.currentCompanyProducers = currentCompanyProducers;
 }