BinaryStudio.TaskManager.Logic.Core.HumanTaskRepository.GetForCreator C# (CSharp) Méthode

GetForCreator() public méthode

The get for creator.
public GetForCreator ( int creatorId ) : IEnumerable
creatorId int /// The creator id. ///
Résultat IEnumerable
        public IEnumerable<HumanTask> GetForCreator(int creatorId)
        {
            return this.dataBaseContext.HumanTasks.Where(it => it.CreatorId == creatorId).ToList();
        }