33 lines
676 B
C#
33 lines
676 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using MapTo;
|
||
|
|
||
|
namespace BlueWest.Data
|
||
|
{
|
||
|
[MapFrom(typeof(CompanyCreate))]
|
||
|
public partial class Company
|
||
|
{
|
||
|
public int Id { get; set; }
|
||
|
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
public string Address { get; set; }
|
||
|
|
||
|
public CompanyType CompanyType { get; set; }
|
||
|
|
||
|
public Country CurrentCountry { get; set; }
|
||
|
|
||
|
public Country OriginCountry { get; set; }
|
||
|
|
||
|
public DateTime FoundingDate { get; set; }
|
||
|
|
||
|
public List<Industry> Industry { get; set; }
|
||
|
|
||
|
public Company()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|