예제 #1
0
 /// <summary>
 /// 构造方法
 /// </summary>
 /// <param name="str">算式</param>
 public Calculate(CalModel model)
 {
     this.model = model;
     HList      = new ArrayList();
     Vlist      = new ArrayList();
     of         = new OperFactory();
     // cu = new CalUtility(str);
 }
예제 #2
0
        public CalModel CreateCalModel(string modelName)
        {
            Guid id = Guid.NewGuid();

            id.ToString();
            CalModel calModel = new CalModel();

            calModel.EID       = id.ToString();
            calModel.ModelName = modelName;
            return(calModel);
        }
예제 #3
0
 public TagOrganization(CalModel model, string orgName)
 {
     this.model            = model;
     this.OrganizationName = orgName;
 }
예제 #4
0
 public TagOrganization(CalModel model)
 {
     this.model = model;
 }
예제 #5
0
 public OrgTag(CalModel model, TagOrganization orgItem, string groupItem)
     : base(model)
 {
     this.orgItem   = orgItem;
     this.groupItem = groupItem;
 }
예제 #6
0
 public void Update(CalModel calModel)
 {
 }
예제 #7
0
 public void Remove(CalModel calModel)
 {
 }