Пример #1
0
        public QueryBinder Discounting(string id, string _defaultDate)
        {
            //Cache2
            QueryBinder binder  = new QueryBinder();
            BulkData    objList = new BulkData();

            binder.PosativeData = objList.GetBasicData(new List <Weightage>(), id, _masterDatapathBasic, _defaultDate);
            binder.CheckPriceStrongOIStroing = objList.GetOpenInterestData(id, _masterDatapathOI, _defaultDate);
            return(binder);
        }
Пример #2
0
        public QueryBinder Index(string id, string _defaultDate)
        {
            //Cache2
            QueryBinder binder  = new QueryBinder();
            BulkData    objList = new BulkData();

            binder.PosativeData = objList.GetBasicData(new List <Weightage>(), id, _masterDatapathBasic, _defaultDate);
            binder.CheckPriceStrongOIStroing = objList.GetOpenInterestData(id, _masterDatapathOI, _defaultDate);
            //binder.CheckLTPHasFirstPlace = objList.GetDMAData(id, _masterDatapathDMA);
            binder.UIDetailedDMA = objList.GetConvertObjectToDMAData(id, _masterDatapathDMA, _defaultDate);
            binder.AvgVolums     = GenerateAvgVolumsData(binder.PosativeData, binder.CheckPriceStrongOIStroing);
            return(binder);
        }