Exemple #1
0
 /// <summary>
 /// print PL entity properties name and value using reflection
 /// </summary>
 /// <param name="itemToPtint"></param>
 public static void PrintItem(IEntityPL itemToPtint)
 {
     Console.ForegroundColor = ConsoleColor.Blue;
     if (itemToPtint != null)
     {
         foreach (var prop in itemToPtint.GetType().GetProperties())
         {
             Console.WriteLine($"{prop.Name}={prop.GetValue(itemToPtint)}");
         }
     }
     Console.WriteLine(new string('=', 40));
     Console.ForegroundColor = ConsoleColor.White;
 }
Exemple #2
0
 //check if item is null
 internal static bool IsItemNull(IEntityPL item)
 {
     return(item == null ? true : false);
 }