Пример #1
0
 public Save_CustomerRequest(string UserType, bool isOnlyDelete, BusinessObjects.CustomerInfo objCustomerInfo, string UserCode)
 {
     this.UserType        = UserType;
     this.isOnlyDelete    = isOnlyDelete;
     this.objCustomerInfo = objCustomerInfo;
     this.UserCode        = UserCode;
 }
Пример #2
0
 public bool Save_Customer(string UserType, bool isOnlyDelete, BusinessObjects.CustomerInfo objCustomerInfo, string UserCode, out string errormsg)
 {
     iGST.Bill_Svc.Save_CustomerRequest inValue = new iGST.Bill_Svc.Save_CustomerRequest();
     inValue.UserType        = UserType;
     inValue.isOnlyDelete    = isOnlyDelete;
     inValue.objCustomerInfo = objCustomerInfo;
     inValue.UserCode        = UserCode;
     iGST.Bill_Svc.Save_CustomerResponse retVal = ((iGST.Bill_Svc.IBillService)(this)).Save_Customer(inValue);
     errormsg = retVal.errormsg;
     return(retVal.Save_CustomerResult);
 }