Example #1
0
 List <string> Interface1.GetAll()
 {
     return(Class1.GetAll());
 }
Example #2
0
 List <string> Interface1.Get(string name)
 {
     return(Class1.Get(name));
 }
Example #3
0
 List <string> Interface1.GetPaths()
 {
     return(Class1.GetPaths());
 }
Example #4
0
 IEnumerable <string> Interface1.GetColumnNames()
 {
     return(Class1.GetColumnNames());
 }
Example #5
0
 void Interface1.Update(string column, string value, string path)
 {
     Class1.Update(column, value, path);
 }
Example #6
0
 void Interface1.Remove(string path)
 {
     Class1.Remove(path);
 }
Example #7
0
 void Interface1.Add(string name, string path, string size, string creation, string accesed, string suffix, string resolution)
 {
     Class1.Add(name, path, size, creation, accesed, suffix, resolution);
 }