Esempio n. 1
0
 internal ApplicationInformation(IConfiguration configuration, IHashHandler hashHandler)
     : base(configuration, hashHandler)
 {
 }
Esempio n. 2
0
 internal UserInformation(IHashHandler hashHandler)
     : base(hashHandler)
 {
 }
Esempio n. 3
0
 protected UserInformationBase(IHashHandler hashHandler)
 {
     _hashHandler = hashHandler;
 }
Esempio n. 4
0
 protected MachineInformationBase(IHashHandler hashHandler)
 {
     _hashHandler = hashHandler;
 }
 protected ApplicationInformationBase(IConfiguration configuration, IHashHandler hashHandler)
 {
     _hashHandler = hashHandler;
     Configuration = configuration;
 }
Esempio n. 6
0
 internal MachineInformation(IHashHandler hashHandler)
     : base(hashHandler)
 {
 }