public static void InsertNewLoc()
        {
            DeptLogic d = new DeptLogic();

            //d.DeleteLocation("DALLAS");
            d.InsertNewDepartment(50, "TEACHER", "BUDAPEST");
        }
        public static void DeleteTest()
        {
            DeptLogic d = new DeptLogic();

            d.DeleteLocation("BOSTON");
        }