Esempio n. 1
0
        public static string AddNotes(int id, string note)
        {
            string rtnVal = string.Empty;

            var proxy = new BusinessProxy();

            try
            {
                rtnVal = proxy.AddNotes(id, note);
            }
            catch (Exception ex)
            {
                Log.Error(ex);
            }

            return(rtnVal);
        }