Beispiel #1
0
 public static void DeleteAllTe()
 {
     var dao = new TipoEntidadDao();
     dao.GetAll()
         .ToList<TipoEntidad>()
         .ForEach( (x) => dao.Delete( x.Id ) );
 }
Beispiel #2
0
 public static void PrintAllTe()
 {
     var dao = new TipoEntidadDao();
     dao.GetAll().ToList<TipoEntidad>().ForEach( (x) => Console.WriteLine(x) );
 }