mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
620 B
30 lines
620 B
using System;
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
|
|
namespace Volo.Abp.TestApp.Domain
|
|
{
|
|
public class District : CreationAuditedEntity
|
|
{
|
|
public Guid CityId { get; private set; }
|
|
|
|
public string Name { get; private set; }
|
|
|
|
public int Population { get; set; }
|
|
|
|
private District()
|
|
{
|
|
|
|
}
|
|
|
|
public District(Guid cityId, string name, int population = 0)
|
|
{
|
|
CityId = cityId;
|
|
Name = name;
|
|
}
|
|
|
|
public override object[] GetKeys()
|
|
{
|
|
return new Object[] {CityId, Name};
|
|
}
|
|
}
|
|
}
|