Exemplo n.º 1
0
 public DataTable CheckCount(int CommentId, string CustomerEmail)
 {
     string[] arrParam = { "@CommentId", "@CustomerEmail" };
     object[] arrValue = { CommentId, CustomerEmail };
     return cnts.TableWithParameter("tblCountLikeComment_CheckLike", arrParam, arrValue);
 }
Exemplo n.º 2
0
 public DataTable GetAllData()
 {
     string[] para = new string[] { };
     object[] obj  = new object[] { };
     return(cnts.TableWithParameter("tblCommentForum_GetAllData", para, obj));
 }
Exemplo n.º 3
0
 public DataTable GetData()
 {
     string[] arrParam = { };
     object[] arrValue = { };
     return(objCon.TableWithParameter("tblFooter_GetData", arrParam, arrValue));
 }
Exemplo n.º 4
0
 public DataTable GetAllTags()
 {
     string[] arrParam = { };
     object[] arrValue = { };
     return(cnts.TableWithParameter("tblTags_GetAll", arrParam, arrValue));
 }
Exemplo n.º 5
0
 public DataTable GetAll()
 {
     string[] arrParam = { };
     object[] arrValue = { };
     return(objCon.TableWithParameter("tblRole_GetAll", arrParam, arrValue));
 }
Exemplo n.º 6
0
 public DataTable GetDataByCategory(int CATEGORYID)
 {
     string[] para = new string[] { "@CATEGORYID" };
     object[] obj  = new object[] { CATEGORYID };
     return(cnts.TableWithParameter("tblNews_GetDataByCategoryID", para, obj));
 }
Exemplo n.º 7
0
 public DataTable GetDataByID(int VIDEO_ID)
 {
     string[] arrParam = { "@VIDEO_ID" };
     object[] arrValue = { VIDEO_ID };
     return(cnts.TableWithParameter("tblVideo_GetByID", arrParam, arrValue));
 }
Exemplo n.º 8
0
 public DataTable CheckCount(int ThreadId, string CustomerEmail)
 {
     string[] arrParam = { "@ThreadId", "@CustomerEmail" };
     object[] arrValue = { ThreadId, CustomerEmail };
     return(cnts.TableWithParameter("tblCountLike_CheckLike", arrParam, arrValue));
 }
Exemplo n.º 9
0
 public DataTable GetDataByID(string id)
 {
     return(cnts.TableWithParameter("tblCategory_GetByID", new string[] { "@ID" }, new object[] { id }));
 }
Exemplo n.º 10
0
 public DataTable GetAll()
 {
     string[] arrParam = { };
     object[] arrValue = { };
     return(cnts.TableWithParameter("tblTeacher_GetData", arrParam, arrValue));
 }
Exemplo n.º 11
0
 public DataTable GetById(string id)
 {
     string[] arrParam = { "@ID" };
     string[] arrValue = { id };
     return(cnts.TableWithParameter("tblMailReceiver_GetByID", arrParam, arrValue));
 }
Exemplo n.º 12
0
 public DataTable tblAdministratorsSelectWithPaged(int STATUS, int STARTINDEX, int MAXRECORDS)
 {
     return(cnts.TableWithParameter("tblAdministratorsSelectWithPaged", new string[] { "@STATUS", "@STARTINDEX", "@MAXRECORDS" }
                                    , new object[] { STATUS, STARTINDEX, MAXRECORDS }));
 }
Exemplo n.º 13
0
 public DataTable tblEmailTemplateSearch(string emailid)
 {
     return(cnts.TableWithParameter("tblEmailTemplateSearch", new string[] { "@EMAILID" }, new object[] { emailid }));
 }
Exemplo n.º 14
0
 public DataTable GetAllData()
 {
     string[] arrParam = { };
     object[] arrValue = { };
     return(cnts.TableWithParameter("tblEventComment_GetAllData", arrParam, arrValue));
 }
Exemplo n.º 15
0
 public DataTable GetDataByID(int ID)
 {
     string[] arrParam = { "@ID" };
     object[] arrValue = { ID };
     return(cnts.TableWithParameter("tblPicture_GetDataByID", arrParam, arrValue));
 }
Exemplo n.º 16
0
 public DataTable GetDataByID(string id)
 {
     return(cnts.TableWithParameter("tblTestimonialGetbyID", new string[] { "@ID" }, new object[] { id }));
 }
Exemplo n.º 17
0
 public DataTable GetDataByID(int ID)
 {
     string[] arrParam = { "@ID" };
     object[] arrValue = { ID };
     return(objCon.TableWithParameter("tblForum_GetDataByID", arrParam, arrValue));
 }
Exemplo n.º 18
0
 public DataTable dataCheckTags(int News_ID)
 {
     string[] arrParam = { "@News_ID" };
     object[] arrValue = { News_ID };
     return(objCon.TableWithParameter("tblNewsTags_CheckTags", arrParam, arrValue));
 }