namespace DR.FV2016.Web.Models.Constituency { public class Constituency { public int Id { get; set; } public string Name { get; set; } public string Slug { get; set; } public static readonly Constituency Empty = new Constituency(); public bool IsEmpty() { var empty = Empty; if (Name == empty.Name && string.Equals(Slug, empty.Slug)) { return true; } return false; } } }