/// <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); }
public CalModel CreateCalModel(string modelName) { Guid id = Guid.NewGuid(); id.ToString(); CalModel calModel = new CalModel(); calModel.EID = id.ToString(); calModel.ModelName = modelName; return(calModel); }
public TagOrganization(CalModel model, string orgName) { this.model = model; this.OrganizationName = orgName; }
public TagOrganization(CalModel model) { this.model = model; }
public OrgTag(CalModel model, TagOrganization orgItem, string groupItem) : base(model) { this.orgItem = orgItem; this.groupItem = groupItem; }
public void Update(CalModel calModel) { }
public void Remove(CalModel calModel) { }