BinaryStudio.TaskManager.Logic.Core.UserRepository.GetAll C# (CSharp) Method

GetAll() public method

The get all.
public GetAll ( ) : IEnumerable
return IEnumerable
        public IEnumerable<User> GetAll()
        {
            return this.dataBaseContext.Users.ToList();
        }