public void CreateZohoBooksParameter() { ZohoBooksParameter myParameter = new ZohoBooksParameter(); myParameter.ParameterName = "Name"; myParameter.DbType = DbType.VarChar; myParameter.Direction = ParameterDirection.Input; myParameter.Size = 15; }
Public Sub CreateZohoBooksParameter() Dim myParameter As New ZohoBooksParameter() myParameter.ParameterName = "Name" myParameter.DbType = DbType.VarChar myParameter.Direction = ParameterDirection.Input myParameter.Size = 15 End Sub