コード例 #1
0
 public static bool IsHomeOffice(this TimeState self)
 {
     return(self.HasFlag(TimeState.HomeOffice));
 }
コード例 #2
0
 public static bool IsLeft(this TimeState self)
 {
     return(self.HasFlag(TimeState.Left));
 }
コード例 #3
0
 public static bool IsTrip(this TimeState self)
 {
     return(self.HasFlag(TimeState.Trip));
 }
コード例 #4
0
 public static bool IsEntered(this TimeState self)
 {
     return(self.HasFlag(TimeState.Entered));
 }