示例#1
0
        private Collection <ISomeOutput> GetData(ISomeInput1 input)
        {
            ServicesLogicContext logic = new ServicesLogicContext((MyType)Identifier);

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

            return(logic.ExecuteSomeAction(input));
        }