예제 #1
0
파일: ExprFunc.cs 프로젝트: caterby/qpmodel
 public DateFunc(List <Expr> args) : base("date", args)
 {
     argcnt_ = 1;
     type_   = new DateTimeType();
 }
예제 #2
0
파일: ExprFunc.cs 프로젝트: caterby/qpmodel
 public YearFunc(List <Expr> args) : base("year", args)
 {
     argcnt_ = 1;
     type_   = new DateTimeType();
 }