Beispiel #1
0
        public BnfoCustomerItems Clone(Bnfo newparent)
        {
            BnfoCustomerItems ret = new BnfoCustomerItems(newparent);

            foreach (BnfoCustomerItem s in list)
            {
                ret.Add(s);
            }

            return(ret);
        }
Beispiel #2
0
 public Bnfo() : base()
 {
     Version = BnfoVersions.Business;
     citems  = new SimPe.Plugin.Collections.BnfoCustomerItems(this);
 }