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