Beispiel #1
0
        public async Task <IResult <FundOverviewRepository> > OverviewFindAsync(FundOverviewRepository inputDTO)
        {
            ProxyXFMFund.FundOverviewRepositoryInput input = new ProxyXFMFund.FundOverviewRepositoryInput();
            input.FundOverviewRepository = AutoMapper.Mapper.Map <ProxyXFMFund.FundOverviewRepository>(inputDTO);
            input.InputContext           = this.UpdateContext <ProxyXFMFund.Context>();
            var result = await InvokeMethodAsync <Domain.Fund.FundOverviewRepository, ProxyXFMFund.WSFundClient>("OverviewFind", input);

            return(result);
        }
Beispiel #2
0
 public IResult <FundOverviewRepository> OverviewFind(FundOverviewRepository inputDTO)
 {
     throw new NotImplementedException();
 }