narsil/Tanshu.Accounts.Contracts/Data Contracts/CustomerBO.cs

18 lines
516 B
C#
Raw Normal View History

2010-03-02 17:56:21 +00:00
using System;
using System.Runtime.Serialization;
using FluentNHibernate.Mapping;
2010-03-02 17:56:21 +00:00
namespace Tanshu.Accounts.Entities
2010-03-02 17:56:21 +00:00
{
public class Customer
2010-03-02 17:56:21 +00:00
{
public virtual int CustomerID { get; set; }
public virtual int Code { get; set; }
public virtual string Name { get; set; }
public virtual string Address { get; set; }
public virtual bool Important { get; set; }
public virtual string Phone { get; set; }
public virtual string Remarks { get; set; }
2010-03-02 17:56:21 +00:00
}
}