using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.ServiceModel; using System.Text; using System.Reflection; using Signum.Entities; using Signum.Engine; using Signum.Entities.DynamicQuery; using Signum.Engine.Maps; using Signum.Engine.DynamicQuery; using Signum.Entities.Basics; using Signum.Services; using Southwind.Services; namespace Southwind.Web { public class ServerSouthwind : ServerBasic, IServerSouthwind { protected override T Return<T>(MethodBase mi, string description, Func<T> function) { try { //Do Security, Tracing and Logging here return function(); } catch (Exception e) { throw new FaultException(e.Message); } } } }
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)
Skills that self-taught computer programmers lack