protected void InitialRelativeInstrument(ref CY.CSTS.Core.Business.view_INSTRUMENT instrument, ref IEnumerable<CY.CSTS.Core.Business.view_INSTRUMENT> relativeInstruments, ref int count)
 {
     try
     {
         if (instrument != null)
         {
             relativeInstruments = instrument.GetRelativeInstruments().Take(12);
             if (relativeInstruments != null)
             {
                 count = relativeInstruments.Count();
             }
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }