private void CombinationController_SolveTaskEvent(object sender, CombControllerArgs e)
 {
     Debug.WriteLine(sender.ToString());
     Debug.WriteLine("Yee!");
     Debug.WriteLine(e.Data);
     Debug.WriteLine(e.OperationType);
 }
        public void SolveTask(string data, OperationType operationType)
        {
            CombControllerArgs combControllerArgs = new CombControllerArgs(data, operationType);

            SolveTaskEvent(this, combControllerArgs);
        }