예제 #1
0
 public static GRNReciept CreateGRNReciept(long gRNReciptID, long orderedItemID)
 {
     GRNReciept gRNReciept = new GRNReciept();
     gRNReciept.GRNReciptID = gRNReciptID;
     gRNReciept.OrderedItemID = orderedItemID;
     return gRNReciept;
 }
예제 #2
0
 public void AddToGRNReciepts(GRNReciept gRNReciept)
 {
     base.AddObject("GRNReciepts", gRNReciept);
 }