5个不同的对象对一个函数具有相同的值

5 different Objects with the same values to an function

我已经用 "XSD.exe" 创建了一个结构 class,现在我遇到了一个小问题:

我在结构中有 5 个不同的 "Classes",所有 5 个 类 具有相同的值,如下所示:

public partial class Carrier
{

    private string codeField;

    private string companyField;

    private string legalNameField;

    private string addressField;

    private string address2Field;

    private string stateField;

    private string cityField;

    private string countryField;

    private string phoneField;

    private string faxField;

    /// <remarks/>
    [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
    public string Code
    {
        get
        {
            return this.codeField;
        }
        set
        {
            this.codeField = value;
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
    public string Company
    {
        get
        {
            return this.companyField;
        }
        set
        {
            this.companyField = value;
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
    public string LegalName
    {
        get
        {
            return this.legalNameField;
        }
        set
        {
            this.legalNameField = value;
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
    public string Address
    {
        get
        {
            return this.addressField;
        }
        set
        {
            this.addressField = value;
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
    public string Address2
    {
        get
        {
            return this.address2Field;
        }
        set
        {
            this.address2Field = value;
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
    public string State
    {
        get
        {
            return this.stateField;
        }
        set
        {
            this.stateField = value;
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
    public string City
    {
        get
        {
            return this.cityField;
        }
        set
        {
            this.cityField = value;
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
    public string Country
    {
        get
        {
            return this.countryField;
        }
        set
        {
            this.countryField = value;
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
    public string Phone
    {
        get
        {
            return this.phoneField;
        }
        set
        {
            this.phoneField = value;
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
    public string Fax
    {
        get
        {
            return this.faxField;
        }
        set
        {
            this.faxField = value;
        }
    }
}

我想将所有五个不同的对象设置为另一个对象,如下所示:

 private Adress FindAddresses(Carrier address)
    {
        tempAddress = new Address();
        tempAddress.AddressCode = address.Code;
        tempAddress.Name1 = address.LegalName;
        tempAddress.Name2 = address.Address;
        tempAddress.Name3 = address.Address2;
        return tempAddress;
    }

唯一的方法是重载此函数 5 次还是提供 "better" 方法来执行此操作?

您可以让 类 实现相同的接口,例如 IAdressable:

public interface IAddressable
{
    public AddressCode Code { get; set; }
    public string LegalName { get; set; }
    public string Address { get; set; }
    public string Address2 { get; set; }
}

现在该方法可以将 IAddressable 作为参数:

 private Adress FindAddresses(IAddressable address)
{
    var tempAddress = new Address();
    tempAddress.AddressCode = address.Code;
    tempAddress.Name1 = address.LegalName;
    tempAddress.Name2 = address.Address;
    tempAddress.Name3 = address.Address2;
    return tempAddress;
}

然后您可以使用所有 类 调用此方法,因为它们都实现了该接口。

您可以尝试将公共属性移动到公共基础 class 中,并从该基础 class 派生 Carrier 和其他 4 个 class。

然后这些方法将采用基础 class 的实例。

public class BaseAddressClass
{
    ...
}

public class Carrier : BaseAddressClass
{
    // Other fields
}

private Address FindAddress(BaseAddressClass address)
{
    ...
}