This commit is contained in:
2018-12-17 23:37:46 +00:00
parent 0514d86b4f
commit 677388910a
8 changed files with 140 additions and 107 deletions

View File

@@ -46,7 +46,15 @@ namespace AyaNova.Models
public User()
{
Tags = new List<string>();
Tags = new List<string>();
}
public bool IsTech
{
get
{
return this.UserType == UserType.Subcontractor || this.UserType == UserType.Schedulable;
}
}
}