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