Exemplo n.º 1
0
        public void InsertIntoGenolgyTree(string placeId, string position, string referId, string UserId)
        {
            UserDAL user = new UserDAL();

            try
            {
                LumexDBPlayer db = LumexDBPlayer.Start(true);
                user.InsertIntoGenolgyTree(placeId,position,referId,UserId, db);
                db.Stop();
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                user = null;
            }
        }