Ejemplo n.º 1
0
        void setup_task(string task_descripiton, string details)
        {
            get_ready_to_perform(task_descripiton);

            _specifics = new NeedingSpecifics();

            if(string.IsNullOrWhiteSpace(details) == false)
                _specifics.Understand_The(details);

            _current_task.Details = _specifics;
            _current_task.Role = _currentApplicationRole;           
        }
Ejemplo n.º 2
0
        void setup_task(string task_descripiton, string details)
        {
            get_ready_to_perform(task_descripiton);

            _specifics = new NeedingSpecifics();

            if (string.IsNullOrWhiteSpace(details) == false)
            {
                _specifics.Understand_The(details);
            }

            _current_task.Details = _specifics;
            _current_task.Role    = _currentApplicationRole;
        }