예제 #1
0
        public Isd Create(
            ImmutableList <IsdCrossJoinElement> value)
        {
            Isd crossJoin = null;

            try
            {
                crossJoin = new sd(
                    value);
            }
            catch (Exception exception)
            {
                this.Log.Error(
                    exception.Message,
                    exception);
            }

            return(crossJoin);
        }
예제 #2
0
 private static void GreetPeople1(string name, sd dd)
 {
     dd(name);
 }