예제 #1
0
        public void AddDataToFile()
        {
            if (string.IsNullOrEmpty(AddToFileContent))
            {
                ErrorMessage = "Cant add empty data";
                return;
            }



            _fileRepository.AddDataToFile(AddToFileContent);

            AddToFileContent = default(string);
        }