public PassthroughResponse ProcessPassthrough(PassthroughRequest objRequest)
 {
     try
     {
         objPassthrough.PassthroughGrid = objclsDashboard.GetPassthroughData(objRequest.DateTime);
         return(objPassthrough);
     }
     catch (Exception)
     {
         return(objPassthrough);
     }
     finally
     {
         objPassthrough  = null;
         objclsDashboard = null;
     }
 }