Beispiel #1
0
        //[InterfaceSuccessFilter]
        //[OtherSystemAuthenticationActionFilter]
        public async Task <SimulatedRefundResponse> SyncPayedRecords([FromBody] SimulatedRefundRequest request)
        {
            //var app = _payLogicFactory.Create();
            //var result = app.SyncPayedRecords(request);
            //return await result;
            var payLogic = await _tCenterFactory.Create();

            return(await payLogic.SimulatedRefund(request));
        }
Beispiel #2
0
        public async Task <NewtonsoftJsonActionResult <CreateOrderManagerResponse> > CreateOrder([FromBody] CreateOrderManagerRequest param)
        {
            var logic = await _tCenterFactory.Create();

            return(await logic.CreateOrder(param));
        }
Beispiel #3
0
        public async Task <List <CategoryEntity> > GetAllManagerCategory()
        {
            var app = await _tCenterFactory.Create();

            return(await app.GetAllManagerCategory());
        }
Beispiel #4
0
        //[OtherSystemAuthenticationActionFilter]
        public async Task <QueryProductAllResponse> QueryProductAll(QueryProductAllRequest request)
        {
            var productLogic = await _tCenterFactory.Create();

            return(await productLogic.QueryProductAll(request));
        }