コード例 #1
0
        public DataSet GetUploadPDFDetails(UploadDocumentSchema objUploadDocumentSchema)
        {
            SqlConnection objConn = SQLHelper.OpenConnection();

            try
            {
                var param = new SqlParameter[]
                {
                    new SqlParameter("@ActionType", objUploadDocumentSchema.Actiontype == null ? (object)DBNull.Value : objUploadDocumentSchema.Actiontype),
                    new SqlParameter("@EnumerationValueID", objUploadDocumentSchema.Enumarationvalueid == null ? (object)DBNull.Value : objUploadDocumentSchema.Enumarationvalueid),
                    new SqlParameter("@DocumentType", objUploadDocumentSchema.Documenttype == null ? (object)DBNull.Value : objUploadDocumentSchema.Documenttype),
                    new SqlParameter("@chkArchive", objUploadDocumentSchema.ChkArchive == false ? Convert.ToBoolean(0) : objUploadDocumentSchema.ChkArchive),
                    new SqlParameter("@parent_EnumerationValueID", objUploadDocumentSchema.Parent_Enumarationvalueid == null ? (object)DBNull.Value : objUploadDocumentSchema.Parent_Enumarationvalueid),
                    new SqlParameter("@DocumentID", objUploadDocumentSchema.Documentid == null ? (object)DBNull.Value : objUploadDocumentSchema.Documentid)
                };

                using (DataSet ds = SQLHelper.ExecuteDataset(objConn, null, CommandType.StoredProcedure, "Usp_UploadPDF", param))
                {
                    return(ds);
                }
            }
            catch (Exception ex)
            {
                return(null);
            }
            finally
            {
                SQLHelper.CloseConnection(objConn);
            }
        }
コード例 #2
0
        public int DMLUploadPdf(UploadDocumentSchema objUploadDocumentSchema)
        {
            try
            {
                using (SqlConnection objConn = SQLHelper.OpenConnection())
                {
                    using (SqlTransaction objTran = objConn.BeginTransaction())
                    {
                        try
                        {
                            var param = new SqlParameter[]
                            {
                                new SqlParameter("@ActionType", objUploadDocumentSchema.Actiontype == null ? (object)DBNull.Value : objUploadDocumentSchema.Actiontype),
                                new SqlParameter("@DocumentID", objUploadDocumentSchema.Documentid == null ? (object)DBNull.Value : objUploadDocumentSchema.Documentid),
                                new SqlParameter("@subject", objUploadDocumentSchema.Subject == null ? (object)DBNull.Value : objUploadDocumentSchema.Subject),
                                new SqlParameter("@subject_LL", objUploadDocumentSchema.Subject_LL == null ? (object)DBNull.Value : objUploadDocumentSchema.Subject_LL),
                                new SqlParameter("@subject_UL", objUploadDocumentSchema.Subject_UL == null ? (object)DBNull.Value : objUploadDocumentSchema.Subject_UL),
                                new SqlParameter("@DocumentPath", objUploadDocumentSchema.DocumentPath == null ? (object)DBNull.Value : objUploadDocumentSchema.DocumentPath),
                                new SqlParameter("@DocumentPath_LL", objUploadDocumentSchema.DocumentPath_LL == null ? (object)DBNull.Value : objUploadDocumentSchema.DocumentPath_LL),
                                new SqlParameter("@DocumentPath_UL", objUploadDocumentSchema.DocumentPath_UL == null ? (object)DBNull.Value : objUploadDocumentSchema.DocumentPath_UL),
                                new SqlParameter("@DocumentType", objUploadDocumentSchema.Documenttype == null ? (object)DBNull.Value : objUploadDocumentSchema.Documenttype),
                                new SqlParameter("@CreatedBy", objUploadDocumentSchema.Createdby == null ? (object)DBNull.Value : objUploadDocumentSchema.Createdby),
                                new SqlParameter("@Size", objUploadDocumentSchema.Size == null ? (object)DBNull.Value : objUploadDocumentSchema.Size),
                                new SqlParameter("@SeasonId", objUploadDocumentSchema.SeasonId == 0 ? 0 : objUploadDocumentSchema.SeasonId),
                                new SqlParameter("@IsActive", objUploadDocumentSchema.Isctive == false ? Convert.ToBoolean(0) : objUploadDocumentSchema.Isctive),
                                new SqlParameter("@IsArchive", objUploadDocumentSchema.IsArchive == false ? Convert.ToBoolean(0) : objUploadDocumentSchema.IsArchive),
                            };

                            int result = SQLHelper.ExecuteNonQuery(objConn, objTran, CommandType.StoredProcedure, "Usp_DMLUploadPdf", param);
                            if (result == 1)
                            {
                                objTran.Commit();
                                return(result);
                            }
                            else
                            {
                                objTran.Rollback();
                                return(0);
                            }
                        }

                        catch (Exception ex)
                        {
                            objTran.Rollback();
                            return(0);
                        }
                    }
                }
            }
            catch (Exception ee)
            {
                return(0);
            }
            finally
            {
            }
        }
コード例 #3
0
ファイル: UploadDocumentBL.cs プロジェクト: barzar90/PMMYA
 public int DMLUploadDocument(UploadDocumentSchema objUploadDocumentSchema)
 {
     try
     {
         result = objUploadDocumentDAL.DMLUploadDocument(objUploadDocumentSchema);
         return(result);
     }
     catch (Exception ex)
     {
         return(0);
     }
 }
コード例 #4
0
ファイル: UploadDocumentBL.cs プロジェクト: barzar90/PMMYA
 public DataSet GetUploadDocumentDetails(UploadDocumentSchema objUploadDocumentSchema)
 {
     try
     {
         ds = objUploadDocumentDAL.GetUploadDocumentDetails(objUploadDocumentSchema);
         return(ds);
     }
     catch (Exception e)
     {
         return(null);
     }
     finally
     {
         ds = null;
     }
 }