Provides access to human task entities
Inheritance: Controller
        public void Init()
        {
            this.taskProcessorMock = new Mock<ITaskProcessor>();
            this.userProcessorMock = new Mock<IUserProcessor>();
            this.userRepositoryMock = new Mock<IUserRepository>();

            this.controller = new HumanTasksController(
                this.taskProcessorMock.Object,
                this.userProcessorMock.Object,
                this.userRepositoryMock.Object);
        }