public RequestSupportViewModel(IAutomaticSupportService automaticSupportService)
        {
            Argument.IsNotNull(() => automaticSupportService);

            _automaticSupportService = automaticSupportService;

            Title = "Automatic support";
        }
        public RequestSupportViewModel(IAutomaticSupportService automaticSupportService, ILanguageService languageService)
        {
            Argument.IsNotNull(() => automaticSupportService);
            Argument.IsNotNull(() => languageService);

            _automaticSupportService = automaticSupportService;
            _languageService = languageService;

            Title = languageService.GetString("AutomaticSupport_AutomaticSupport");
        }
        public RequestSupportViewModel(IAutomaticSupportService automaticSupportService, ILanguageService languageService)
        {
            Argument.IsNotNull(() => automaticSupportService);
            Argument.IsNotNull(() => languageService);

            _automaticSupportService = automaticSupportService;
            _languageService         = languageService;

            Title = languageService.GetString("AutomaticSupport_AutomaticSupport");
        }