Example #1
0
 public void LoadData()
 {
     if (FileTable == null)
     {
         throw new KeyNotFoundException();
     }
     Mappings = ReaderRepo.GetMappingData(FileTable.SettingId);
 }
Example #2
0
 public void SaveData()
 {
     string isInserted = ReaderRepo.InsertOutputData(OutputData);
     string isUpdated  = ReaderRepo.UpdateFileTableData(FileTable.FileId);
 }