/// <summary>
 /// Resolving dependencies
 /// </summary>
 public void ResolveDependencies()
 {
     DependencyFactory.AddItemtoContainer <IApplication, Application>();
     DependencyFactory.AddItemtoContainer <IValidator, Validator>();
     DependencyFactory.AddItemtoContainer <ISortByLasNameFisrtNameAndOtherName, SortByLasNameFisrtNameAndOtherName>();
     DependencyFactory.AddItemtoContainer <ITextFileProcessor, TextFileProcessor>();
 }