Esempio n. 1
0
        public List<DocumentType> GetSalaryDocumentDetailsByEmployeeId(int employeeId)
        {
            SqlConnection sqlConnection = new SqlConnection(connStr);
            SqlDataReader sqlReader;
            List<DocumentType> documentTypeList = new List<DocumentType>();
            try
            {
                if (sqlConnection.State == ConnectionState.Closed)
                {
                    sqlConnection.Open();
                }

                SqlCommand sqlCommand = new SqlCommand("usp_GetSalaryDocumentDetailsByEmployeeId", sqlConnection);
                sqlCommand.Parameters.Add("@EmployeeId", SqlDbType.VarChar).Value = employeeId;
                sqlCommand.CommandType = CommandType.StoredProcedure;
                sqlReader = sqlCommand.ExecuteReader();
                while (sqlReader.Read())
                {
                    DocumentType documentType = new DocumentType
                    {
                        DocumentId = (Convert.ToInt32(sqlReader["DocumentId"])),
                        DocumentTypeId = (Convert.ToInt32(sqlReader["DocumentTypeId"])),
                        DocumentTypeName = sqlReader["DocumentType"].ToString(),
                        DocumentName = sqlReader["DocumentName"].ToString(),
                        DocumentLink = appPath + sqlReader["DocumentLink"].ToString(),
                        Comments = sqlReader["Comments"].ToString()
                    };
                    documentTypeList.Add(documentType);
                }
                return documentTypeList;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Esempio n. 2
0
        public int SaveDocumentDetails(DocumentType documentType, int employeeId)
        {
            SqlConnection sqlConnection = new SqlConnection(connStr);
            int output;
            try
            {
                if (sqlConnection.State == ConnectionState.Closed)
                {
                    sqlConnection.Open();
                }

                SqlCommand sqlCommand = new SqlCommand("usp_SaveDocumentDetails", sqlConnection);
                sqlCommand.CommandType = CommandType.StoredProcedure;
                sqlCommand.Parameters.Add("@EmployeeId", SqlDbType.Int).Value = employeeId;
                sqlCommand.Parameters.Add("@DocumentId", SqlDbType.Int).Value = DocumentId;
                sqlCommand.Parameters.Add("@DocumentTypeId", SqlDbType.Int).Value = DocumentTypeId;
                sqlCommand.Parameters.Add("@DocumentName", SqlDbType.VarChar).Value = DocumentName;
                sqlCommand.Parameters.Add("@Comments", SqlDbType.VarChar).Value = Comments;
                sqlCommand.Parameters.Add("@DocumentLink", SqlDbType.VarChar).Value = DocumentLink;
                output = Convert.ToInt32(sqlCommand.ExecuteScalar());
                return output;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Esempio n. 3
0
        public List<DocumentType> GetDocumentType()
        {
            SqlConnection sqlConnection = new SqlConnection(connStr);
            SqlDataReader sqlReader;
            List<DocumentType> documentTypeList = new List<DocumentType>();
            try
            {
                if (sqlConnection.State == ConnectionState.Closed)
                {
                    sqlConnection.Open();
                }

                SqlCommand sqlCommand = new SqlCommand("usp_GetDocumentType", sqlConnection);
                sqlCommand.CommandType = CommandType.StoredProcedure;
                sqlReader = sqlCommand.ExecuteReader();
                while (sqlReader.Read())
                {
                    DocumentType documentType = new DocumentType
                    {
                        DocumentTypeId = (Convert.ToInt32(sqlReader["DocumentTypeId"])),
                        DocumentTypeName = sqlReader["DocumentType"].ToString(),
                        DocumentDescription = sqlReader["DocumentTypeDescription"].ToString()
                    };
                    documentTypeList.Add(documentType);
                }
                return documentTypeList;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }