Ejemplo n.º 1
0
        private Collection <ISomeOutput> GetData(ISomeInput1 input)
        {
            ServicesLogicContext logic = new ServicesLogicContext((MyType)Identifier);

            return(logic.GetSomeData(input) as Collection <ISomeOutput>);
        }
Ejemplo n.º 2
0
 public MyServices()
 {
     _logicServices = new ServicesLogicContext(new LogicInfo()
     {
Ejemplo n.º 3
0
        private IMethodResult ExecuteSomeAction(ISomeInput2 input)
        {
            ServicesLogicContext logic = new ServicesLogicContext((MyType)Identifier);

            return(logic.ExecuteSomeAction(input));
        }