Add Faction Ranks

This commit is contained in:
hydrant
2018-09-23 21:10:42 +02:00
parent bba0f7206c
commit bac725f2dc
6 changed files with 72 additions and 18 deletions

View File

@@ -36,21 +36,26 @@ namespace reallife_gamemode.Server.Entities
public int? FactionId { get; set; }
public Faction Faction { get; set; }
public int? FactionRankId { get; set; }
public FactionRank FactionRank { get;set; }
public bool IsAdmin(AdminLevel level) => AdminLevel >= level;
public Faction GetFaction(DatabaseContext context = null)
public Faction GetFaction()
{
if(context == null)
{
using(context = new DatabaseContext())
{
return context.Factions.FirstOrDefault(f => f.Id == FactionId);
}
}
else
using(var context = new DatabaseContext())
{
return context.Factions.FirstOrDefault(f => f.Id == FactionId);
}
}
public FactionRank GetFactionRank()
{
using (var context = new DatabaseContext())
{
return context.FactionRanks.FirstOrDefault(fR => fR.Id == FactionRankId);
}
}
public bool IsAdmin(AdminLevel level) => AdminLevel >= level;
}
}