Ejemplo n.º 1
0
 public static SybaseBoolean NotEquals(SybaseDateTime x, SybaseDateTime y)
 {
     return(x != y);
 }
Ejemplo n.º 2
0
 public static SybaseBoolean LessThan(SybaseDateTime x, SybaseDateTime y)
 {
     return(x < y);
 }
Ejemplo n.º 3
0
 public static SybaseBoolean LessThanOrEqual(SybaseDateTime x, SybaseDateTime y)
 {
     return(x <= y);
 }
Ejemplo n.º 4
0
 public static SybaseBoolean GreaterThan(SybaseDateTime x, SybaseDateTime y)
 {
     return(x > y);
 }
Ejemplo n.º 5
0
 public static SybaseBoolean GreaterThanOrEqual(SybaseDateTime x, SybaseDateTime y)
 {
     return(x >= y);
 }
		public static SybaseBoolean NotEquals (SybaseDateTime x, SybaseDateTime y)
		{
			return (x != y);
		}
		public static SybaseBoolean LessThanOrEqual (SybaseDateTime x, SybaseDateTime y)
		{
			return (x <= y);
		}
		public static SybaseBoolean LessThan (SybaseDateTime x, SybaseDateTime y)
		{
			return (x < y);
		}
		public static SybaseBoolean GreaterThanOrEqual (SybaseDateTime x, SybaseDateTime y)
		{
			return (x >= y);
		}
		public static SybaseBoolean GreaterThan (SybaseDateTime x, SybaseDateTime y)
		{
			return (x > y);
		}