public object GetHoroscope(string reportType, DateTime date, int id)
        {
            List <KeyValuePair <string, object> > param = new List <KeyValuePair <string, object> >()
            {
                new KeyValuePair <string, object>("@reportType", reportType),
                new KeyValuePair <string, object>("@date", date),
                new KeyValuePair <string, object>("@zodiacId", id)
            };

            return(DataExecutor.ExecuteDataSet(UtilityConstant.Procedures.Mst_GetHoroscope, param));
        }
Esempio n. 2
0
 public DataSet GetUserQueryReply(int queryId)
 {
     try
     {
         List <KeyValuePair <string, object> > param = new List <KeyValuePair <string, object> >()
         {
             new KeyValuePair <string, object>("@QueryId", queryId)
         };
         return(DataExecutor.ExecuteDataSet(UtilityConstant.Procedures.Mst_GetUserQueyReply, param));
     }
     catch (Exception ex)
     {
         return(new DataSet());
     }
 }