public void Add(GrantPoco Grant) { GrantsData.Add(Grant); }
public void RemoveByKey(string key) { GrantsData.RemoveByKey(key); }
public GrantPoco GetByKey(string key) { return(GrantsData.GetByKey(key)); }
public void RemoveAll(string subjectId, string clientId, string type) { GrantsData.RemoveAll(subjectId, clientId, type); }
public IEnumerable <GrantPoco> GetAll(string subjectId) { return(GrantsData.GetAll(subjectId)); }