using System;
using System.Collections.Generic;
using System.Text;
namespace GreenTree.Strohrmann.ERP.Core.Domain.Business
{
public class Supplier
{
///
/// Supplier Id
///
public int Id { get; set; }
///
/// Supplier name
///
public string Name { get; set; }
///
/// Supplier description
///
public string Description { get; set; }
///
/// Supplier address
///
public string Address { get; set; }
///
/// Supplier town
///
public string Town { get; set; }
///
/// Supplier zip code
///
public string ZipCode { get; set; }
///
/// Supplier country
///
public string Country { get; set; }
///
/// Supplier contact phone 1
///
public string PhoneFirst { get; set; }
///
/// Supplier contact phone 2
///
public string PhoneSecond { get; set; }
///
/// Supplier contact mail 1
///
public string MailFirst { get; set; }
///
/// Supplier contact mail 2
///
public string MailSecond { get; set; }
///
/// Supplier custom comment
///
public string Comment { get; set; }
///
/// Supplier materials
///
public virtual ICollection Materials { get; set; }
}
}