- 01
 - 02
 - 03
 - 04
 - 05
 - 06
 - 07
 - 08
 - 09
 - 10
 - 11
 - 12
 - 13
 - 14
 - 15
 - 16
 - 17
 - 18
 - 19
 - 20
 - 21
 - 22
 - 23
 - 24
 - 25
 - 26
 - 27
 - 28
 - 29
 
Public CallGridRowModel(CallView callView)
{
  . . .
  Caller = GetCallerOrCalleeNameColumn(callView, true)
  Callee = GetCallerOrCalleeNameColumn(callView, false)
  . . .
}
  
  
private object GetCallerOrCalleeNameColumn(CallView callView, bool isCallerNameColumn)
{
  if(isCallerNameColumn)
  {
    if(. . .) return . . .;
  }
  if(!isCallerNameColumn)
  {
    if(. . .) return . . .;
  }
  
  if(isCallerNameColumn)
  {
    return . . .;
  }
  else
  {
    return . . .;
  }
}
                                    
 Follow us!