예제 #1
0
 public CarroCollection(int CAR_ID, int ORDER)
 {
     this._typeLoad = CarroLoadType.LoadById;
     this._CAR_ID   = CAR_ID;
     this._ORDER    = ORDER;
     this.Load();
 }
예제 #2
0
 public CarroCollection(bool isLoad, int ORDER)
 {
     this._typeLoad = CarroLoadType.LoadAll;
     this._ORDER    = ORDER;
     if (isLoad)
     {
         this.Load();
     }
 }