public static string SalvarUnidade(string cod, string nome)
        {
            try
            {
                DAO dao = new DAO();

                if (dao.AddEdtUnidade(new Unidade()
                {
                    idUser = Convert.ToInt32(HttpContext.Current.Session["idUsuario"]),
                    Descricao = nome,
                    Codigo_Un = cod
                }))
                {
                    return "True";
                }
                else
                {
                    return "False";
                }
            }
            catch (Exception ex)
            {
                return ex.Message;
            }
        }