Exemplo n.º 1
0
 public HashModel(string key, string field)
 {
     _hash = new HashEntity
     {
         Id    = Guid.NewGuid(),
         Key   = key,
         Field = field
     };
 }
Exemplo n.º 2
0
 public HashModel(HashEntity hashEntity)
 {
     _hash = hashEntity;
 }