2010-03-02 17:56:21 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Tanshu.Accounts.Contracts
|
|
|
|
|
{
|
2013-11-28 10:39:33 +00:00
|
|
|
|
|
2010-03-02 17:56:21 +00:00
|
|
|
|
public class CustomerBO
|
|
|
|
|
{
|
2013-11-28 10:39:33 +00:00
|
|
|
|
|
2010-03-02 17:56:21 +00:00
|
|
|
|
public Guid CustomerID { get; set; }
|
2013-11-28 10:39:33 +00:00
|
|
|
|
|
2010-03-02 17:56:21 +00:00
|
|
|
|
public int Code { get; set; }
|
2013-11-28 10:39:33 +00:00
|
|
|
|
|
2010-03-02 17:56:21 +00:00
|
|
|
|
public string Name { get; set; }
|
2013-11-28 10:39:33 +00:00
|
|
|
|
|
2010-03-02 17:56:21 +00:00
|
|
|
|
public string Address { get; set; }
|
2013-11-28 10:39:33 +00:00
|
|
|
|
|
2010-03-02 17:56:21 +00:00
|
|
|
|
public bool Important { get; set; }
|
2013-11-28 10:39:33 +00:00
|
|
|
|
|
2010-03-02 17:56:21 +00:00
|
|
|
|
public string Phone { get; set; }
|
2013-11-28 10:39:33 +00:00
|
|
|
|
|
2010-03-02 17:56:21 +00:00
|
|
|
|
public string Remarks { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|