コード例 #1
0
ファイル: sefaresh.cs プロジェクト: cxdcxd/touchgroup
 public sefaresh_show(string p_name, int c, int fcost, int ID, int sseq)
 {
     seq = sseq;
     this.p = null;
     product_name = p_name;
     count = c;
     id = ID;
     this.fcost = fcost;
     this.cost = ((int)this.fcost / this.count);
 }
コード例 #2
0
ファイル: sefaresh.cs プロジェクト: cxdcxd/touchgroup
 public sefaresh_show(Product2 p, int c, int ID, int sseq)
 {
     seq = sseq;
     this.p = p;
     count = c;
     id = ID;
 }