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

GetById() public méthode

The get by id.
public GetById ( int humanTaskId ) : HumanTask
humanTaskId int /// The human task id. ///
Résultat BinaryStudio.TaskManager.Logic.Domain.HumanTask
        public HumanTask GetById(int humanTaskId)
        {
            return this.dataBaseContext.HumanTasks.Single(it => it.Id == humanTaskId);
        }