Ejemplo n.º 1
0
 public void GivenTheseXModul(Table table)
 {
     try
     {
         TestDataManager.Insert <XModul>(table);
     }
     catch (Exception)
     {
         Cleanup();
         throw;
     }
 }
Ejemplo n.º 2
0
 public void GivenTheseBaPerson(Table table)
 {
     try
     {
         TestDataManager.Insert <BaPerson>(table);
     }
     catch (Exception)
     {
         Cleanup();
         throw;
     }
 }
Ejemplo n.º 3
0
 public void GivenTheseFaLeistung(Table table)
 {
     try
     {
         TestDataManager.Insert <FaLeistung>(table);
     }
     catch (Exception)
     {
         Cleanup();
         throw;
     }
 }
Ejemplo n.º 4
0
        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;
            }
        }
Ejemplo n.º 5
0
        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;
            }
        }
Ejemplo n.º 6
0
 public void GivenTheseXUser(Table table)
 {
     TestDataManager.Insert <XUser>(table);
 }
Ejemplo n.º 7
0
 public async Task GivenTheseBenutzer(Table table)
 {
     await _testDataManager.Insert <XUser>(table);
 }