public void Configure(
     IInversionOfControlRegistration registration,
     IFakeGenerator fakeGenerator)
 {
     Configure(registration);
     Configure(fakeGenerator);
 }
 public Autofaker(
     IInversionOfControlRegistration registration,
     IFakeGenerator fakeGenerator)
 {
     Configure(
         registration,
         fakeGenerator);
 }
 public void Configure(
     IInversionOfControlRegistration registration)
 {
     _registration = registration;
 }