Beispiel #1
0
        public static string Insert(string company, string businessDepart,
                                    string documentType, string document_Number, string address, string phone, string email, string url)
        {
            DSupplier Obj = new DSupplier();

            Obj.Company             = company;
            Obj.Business_Department = businessDepart;
            Obj.Document_Type       = documentType;
            Obj.Document_Number     = document_Number;
            Obj.Address             = address;
            Obj.Phone = phone;
            Obj.Email = email;
            Obj.Url   = url;

            return(Obj.Insert(Obj));
        }