예제 #1
0
 public SplintComponent(dsSplints dsSplints, dsLines dsLines, int ComponentId,
     SplintContourType StartType, double Value, int Numer, int LineId)
 {
     this.dsLines = dsLines;
     this.dsSplints = dsSplints;
     this.ComponentId = ComponentId;
     starttype = StartType;
     value = Value;
     numer = Numer;
     this.LineId = LineId;
 }
예제 #2
0
파일: Lines.cs 프로젝트: PeletonSoft/Orders
 public Enumerator(dsLines dsLines, dsSplints dsSplints)
 {
     Index = -1;
     this.dsLines = dsLines;
     this.dsSplints = dsSplints;
 }
예제 #3
0
파일: Lines.cs 프로젝트: PeletonSoft/Orders
 public Lines(dsLines dsLines, dsSplints dsSplints)
 {
     this.dsLines = dsLines;
     this.dsSplints = dsSplints;
 }
예제 #4
0
파일: Line.cs 프로젝트: PeletonSoft/Orders
 public Enumerator(dsLines dsLines, dsSplints Splints, int LineId)
 {
     this.dsLines = dsLines;
     this.LineId = LineId;
     this.dsSplints = Splints;
     Index = -1;
 }
예제 #5
0
파일: Line.cs 프로젝트: PeletonSoft/Orders
 public Line(dsLines dsLines, dsSplints dsSplints, int ID)
 {
     this.dsLines = dsLines;
     this.dsSplints = dsSplints;
     LineId = ID;
 }
예제 #6
0
 public Enumerator(dsSplints dsSplints, int ComponentId, SplintContourType StartType, double Value)
 {
     this.dsSplints = dsSplints;
     this.StartType = StartType;
     this.ComponentId = ComponentId;
     this.Value = Value;
     Index = -1;
 }