Friday, February 26, 2010

part-2 AuthorizeNetFields.cs

AuthorizeNet.cs
AuthorizeNetFields.cs
AuthorizeNetRequest.cs
AuthorizeNetResponse.cs






using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

/// 
/// Summary description for AuthorizeNetFields
/// 

public class AuthorizeNetFields
{
public AuthorizeNetFields()
{
//
// TODO: Add constructor logic here
//
}
private string x_description = string.Empty;
public string x_Description
{
get { return x_description; }
set { x_description = value; }
}


private string x_first_name = string.Empty;
public string x_First_Name
{
get { return x_first_name; }
set { x_first_name = value; }
}
private string x_last_name = string.Empty;
public string x_Last_Name
{
get { return x_last_name; }
set { x_last_name = value; }
}


private string x_address = string.Empty;
public string x_Address
{
get { return x_address; }
set { x_address = value; }
}

private string x_city = string.Empty;
public string x_City
{
get { return x_city; }
set { x_city = value; }
}

private string x_state = string.Empty;

public string x_State
{
get { return x_state; }
set { x_state = value; }
}
private string x_zip = string.Empty;
public string x_Zip
{
get { return x_zip; }
set { x_zip = value; }
}

private string x_country = string.Empty;
public string x_Country
{
get { return x_country; }
set { x_country = value; }
}

private string x_phone = string.Empty;
public string x_Phone
{
get { return x_phone; }
set { x_phone = value; }
}

private string x_fax = string.Empty;
public string x_Fax
{
get { return x_fax; }
set { x_fax = value; }
}

private string x_email = string.Empty;
public string x_Email
{
get { return x_email; }
set { x_email = value; }
}



private string x_ship_to_first_name = string.Empty;
public string x_Ship_to_first_name
{
get { return x_ship_to_first_name; }
set { x_ship_to_first_name = value; }
}

private string x_ship_to_last_name = string.Empty;
public string x_Ship_to_last_name
{
get { return x_ship_to_last_name; }
set { x_ship_to_last_name = value; }
}

private string x_ship_to_company = string.Empty;
public string x_Ship_to_company
{
get { return x_ship_to_company; }
set { x_ship_to_company = value; }
}

private string x_ship_to_address = string.Empty;
public string x_Ship_to_address
{
get { return x_ship_to_address; }
set { x_ship_to_address = value; }
}

private string x_ship_to_city = string.Empty;
public string x_Ship_to_city
{
get { return x_ship_to_city; }
set { x_ship_to_city = value; }
}

private string x_ship_to_state = string.Empty;
public string x_Ship_to_state
{
get { return x_ship_to_state; }
set { x_ship_to_state = value; }
}

private string x_ship_to_zip = string.Empty;
public string x_Ship_to_zip
{
get { return x_ship_to_zip; }
set { x_ship_to_zip = value; }
}

private string x_ship_to_phone = string.Empty;
public string x_Ship_to_phone
{
get { return x_ship_to_phone; }
set { x_ship_to_phone = value; }
}
private string x_ship_to_country = string.Empty;
public string x_Ship_to_country
{
get { return x_ship_to_country; }
set { x_ship_to_country = value; }
}

private string x_tax = string.Empty;
public string x_Tax
{
get { return x_tax; }
set { x_tax = value; }
}
}

No comments:

Post a Comment