/// <summary>
 /// Initializes a new instance of <see cref="NewFileWindowViewModel"/> class
 /// </summary>
 public NewFileWindowViewModel()
 {
     BulkFile = new BulkFile()
     {
         Factor          = 3,
         NumberOfBuckets = 3,
         NumberOfRecordsInOverrunZone = 5
     };
 }
Ejemplo n.º 2
0
        public string CreateFile(FileDescription fileDescription)
        {
            BulkFile bulkFile = new BulkFile();

            return(bulkFile.CreateFile(fileDescription));
        }
 /// <summary>
 /// Forms a new empty bulk file and closes the dialog
 /// </summary>
 private void CreateNewFile()
 {
     BulkFile.FormEmptyBulkFile();
     CloseRequested?.Invoke(this, new DialogCloseRequestedEventArgs(true));
 }