Ejemplo n.º 1
0
 public void TruncateOf <T>(string typeOf)
 {
     using (var writer = new DocumentWriter <T>(Engine, typeOf))
     {
         writer.Truncate();
     }
 }
Ejemplo n.º 2
0
 public void TruncateOf <T>()
 {
     using (var writer = new DocumentWriter <T>(Engine, GetTypeOfName <T>()))
     {
         writer.Truncate();
     }
 }