Nested property class

Posted by user998405 on Stack Overflow See other posts from Stack Overflow or by user998405
Published on 2012-10-01T03:30:39Z Indexed on 2012/10/01 3:37 UTC
Read the original article Hit count: 114

Filed under:
|
|
|

I got 1 parent property class and 3 child property class. Here is my example

Parent class

public class blcSalesParam 
{   
    public string selectFrom
    {
        get;
        set;
    }

    public string pageAction
    {
        get;
        set;
    }
}

Child class

public class blcDeliveryOrder 
{
    public int? DeliveryID
    {
        get;
        set;
    }

    public string DeliveryCode
    {
        get;
        set;
    }

© Stack Overflow or respective owner

Related posts about c#

Related posts about ASP.NET