public VendorAuthenticationManager(IVendorAuthenticationRepository vendorAuthenticationRepository,
                                    IMessageSenderUtility messageSenderUtility,
                                    ILoggingRepository loggingRepository)
 {
     _vendorAuthenticationRepository = vendorAuthenticationRepository;
     _messageSenderUtility           = messageSenderUtility;
     _loggingRepository = loggingRepository;
 }
Esempio n. 2
0
 public VendorManager(IVendorRepository vendorRepository, IMessageSenderUtility messageSenderUtility, ILoggingRepository loggingRepository)
 {
     _vendorRepository     = vendorRepository;
     _messageSenderUtility = messageSenderUtility;
     _loggingRepository    = loggingRepository;
 }