Ejemplo n.º 1
0
Archivo: Avg.cs Proyecto: gunivan/cooq
 public AvgInteger(NIntegerColumn column)
 {
     if (object.Equals(null, column))
     {
         throw new NullReferenceException("column cannot be null");
     }
     this.mColumn = column;
 }
Ejemplo n.º 2
0
 public IUpdateSet Set(NIntegerColumn column, int?value)
 {
     this.mSetValueList.Add(new SetValue(column, value));
     return(this);
 }