Example #1
0
 public TimeSpan GetSeniority()
 {
     if (IsActive)
     {
         return(DateTime.Now.Subtract(DateOfEmployment));
     }
     else
     {
         return(DateOfDismissal.Subtract(DateOfEmployment));
     }
 }