コード例 #1
0
        public IHttpActionResult InsertLoanValueRatio(LoanValueRatioModel model)
        {
            AssetTypes type = (AssetTypes)Int32.Parse(model.AssetType);

            edisRepo.FeedDataForLoanValueRatios(new LoanValueRatioFeed {
                AssetType = type,
                CreateOn  = model.CreateOn,
                Lender    = model.Lender,
                Ratio     = model.Ratio,
                Ticker    = model.Ticker
            });

            return(Ok());
        }