using System; using System.Collections.Generic; using System.Linq; using System.Text; using HeuristicLab.Hive.Contracts.Interfaces; using HeuristicLab.Hive.Contracts.BusinessObjects; namespace HeuristicLab.Hive.Server.Core { class UserRoleManager: IUserRoleManager { #region IUserRoleManager Members public List GetAllUsers() { throw new NotImplementedException(); } public List GetAllUserGroups() { throw new NotImplementedException(); } #endregion } }