Code cleanup

This commit is contained in:
2016-06-12 16:57:44 +02:00
parent 819b0502a8
commit a56749db92
9 changed files with 126 additions and 133 deletions

View File

@@ -10,7 +10,7 @@ namespace VAR.Focus.Web.Code.Entities
public string Description { get; set; }
private bool _active = true;
public bool Active { get { return _active} set { _active = value; } }
public bool Active { get { return _active; } set { _active = value; } }
public string CreatedBy { get; set; }
public DateTime CreatedDate { get; set; }
public string ModifiedBy { get; set; }