FixServiceClient.cs 742 Bytes
Newer Older
1
using FLY.Thick.Base.IService;
潘栩锋's avatar
潘栩锋 committed
2
using FObjBase;
3
using FObjBase.Reflect;
4
using System;
潘栩锋's avatar
潘栩锋 committed
5 6 7

namespace FLY.Thick.Base.Client
{
8
    public class FixServiceClient : FObjBase.Reflect.Reflect_SeviceClient, IFixService
潘栩锋's avatar
潘栩锋 committed
9
    {
10 11
        protected override Type InterfaceType => typeof(IFixService);

潘栩锋's avatar
潘栩锋 committed
12

13
        public FixServiceClient(UInt32 serviceId) : base(serviceId) { }
潘栩锋's avatar
潘栩锋 committed
14

15
        public FixServiceClient(UInt32 serviceId, string connName) : base(serviceId, connName) { }
潘栩锋's avatar
潘栩锋 committed
16

17
        public DateTime UpdateTime { get; set; }
潘栩锋's avatar
潘栩锋 committed
18

19 20
        [Call(typeof(GetFixDatasReponse))]
        public void GetFixDatas(AsyncCBHandler asyncDelegate, object asyncContext)
潘栩锋's avatar
潘栩锋 committed
21
        {
22
            Call(nameof(GetFixDatas), null, asyncDelegate, asyncContext);
潘栩锋's avatar
潘栩锋 committed
23 24
        }

潘栩锋's avatar
潘栩锋 committed
25

潘栩锋's avatar
潘栩锋 committed
26 27 28 29


    }
}