public void GivenTheseXModul(Table table) { try { TestDataManager.Insert <XModul>(table); } catch (Exception) { Cleanup(); throw; } }
public void GivenTheseBaPerson(Table table) { try { TestDataManager.Insert <BaPerson>(table); } catch (Exception) { Cleanup(); throw; } }
public void GivenTheseFaLeistung(Table table) { try { TestDataManager.Insert <FaLeistung>(table); } catch (Exception) { Cleanup(); throw; } }
public void GivenTheseFaLeistung(Table table) { Dictionary <string, string> idFieldMapping = new Dictionary <string, string>(); idFieldMapping.Add("FaFallID", "BaPersonID"); try { TestDataManager.Insert <FaLeistung>(table, idFieldMapping); } catch (Exception) { Cleanup(); throw; } }
public void GivenTheseXTask(Table table) { Dictionary <string, string> idFieldMapping = new Dictionary <string, string>(); idFieldMapping.Add("SenderID", "UserID"); idFieldMapping.Add("ReceiverID", "UserID"); idFieldMapping.Add("FaFallID", "BaPersonID"); try { TestDataManager.Insert <XTask>(table, idFieldMapping); } catch (Exception) { Cleanup(); throw; } }
public void GivenTheseXUser(Table table) { TestDataManager.Insert <XUser>(table); }
public async Task GivenTheseBenutzer(Table table) { await _testDataManager.Insert <XUser>(table); }