public void Insert(int B3PrinterSupplierID, int PrinterID)
        {
            B3LookupPrinterID item = new B3LookupPrinterID();

            item.B3PrinterSupplierID = B3PrinterSupplierID;

            item.PrinterID = PrinterID;


            item.Save(UserName);
        }
        public void Update(int B3PrinterSupplierID, int PrinterID)
        {
            B3LookupPrinterID item = new B3LookupPrinterID();

            item.MarkOld();
            item.IsLoaded = true;

            item.B3PrinterSupplierID = B3PrinterSupplierID;

            item.PrinterID = PrinterID;

            item.Save(UserName);
        }
 public bool Destroy(object B3PrinterSupplierID)
 {
     return(B3LookupPrinterID.Destroy(B3PrinterSupplierID) == 1);
 }