Exemplo n.º 1
0
        public bool LoadCollections()
        {
            bool createOK = false;

            try
            {
                DALUtils dal = new DALUtils();
                createOK = dal.LoadCollections();
            } catch (Exception ex)
            {
                ErrorRoutine(ex, "ViewModelUtils", "LoadCollections");
            }

            return createOK;
        }
Exemplo n.º 2
0
 public void ReCreateDatabase()
 {
     DALUtils dal = new DALUtils();
     Assert.IsTrue(dal.LoadCollections());
 }