Ejemplo n.º 1
0
        public static Int32 Save(string CURRENT_USER, Int32 CURRENT_REGISTRY_ID, STD_SURVEY_TYPE objSave)
        {
            Int32             objReturn = 0;
            STD_SURVEY_TYPEDB objDB     = new STD_SURVEY_TYPEDB();

            objReturn = objDB.Save(CURRENT_USER, CURRENT_REGISTRY_ID, objSave);

            return(objReturn);
        }
Ejemplo n.º 2
0
        public static STD_SURVEY_TYPE GetItem(string CURRENT_USER, Int32 CURRENT_REGISTRY_ID, Int32 ID)
        {
            STD_SURVEY_TYPE   objReturn = null;
            STD_SURVEY_TYPEDB objDB     = new STD_SURVEY_TYPEDB();

            objReturn = objDB.GetItem(CURRENT_USER, CURRENT_REGISTRY_ID, ID);

            return(objReturn);
        }
Ejemplo n.º 3
0
        public STD_SURVEY_TYPE ParseReaderComplete(DataRow row)
        {
            STD_SURVEY_TYPE objReturn = ParseReaderCustom(row);

            if (objReturn != null)
            {
                STD_REGISTRYDB db = new STD_REGISTRYDB();
                objReturn.STD_REGISTRY = db.ParseReaderCustom(row);
            }

            return(objReturn);
        }
        private void LoadForm(int id)
        {
            ResetForm();

            STD_SURVEY_TYPE survey = ServiceInterfaceManager.STD_SURVEY_TYPE_GET(HttpContext.Current.User.Identity.Name, UserSession.CurrentRegistryId, id);

            if (survey != null)
            {
                listRegistries.SelectedValue = survey.STD_REGISTRY_ID.ToString();

                hideSurveyId.Value        = survey.ID.ToString();
                txtSurveyName.Text        = survey.NAME;
                txtSurveyCode.Text        = survey.CODE;
                txtSurveyDescription.Text = survey.DESCRIPTION_TEXT;
            }
        }
Ejemplo n.º 5
0
        public STD_SURVEY_TYPE ParseReaderCustom(DataRow row)
        {
            STD_SURVEY_TYPE objReturn = new STD_SURVEY_TYPE
            {
                CODE             = (string)GetNullableObject(row.Field <object>("STD_SURVEY_TYPE_CODE")),
                CREATED          = (DateTime)GetNullableObject(row.Field <object>("STD_SURVEY_TYPE_CREATED")),
                CREATEDBY        = (string)GetNullableObject(row.Field <object>("STD_SURVEY_TYPE_CREATEDBY")),
                DESCRIPTION_TEXT = (string)GetNullableObject(row.Field <object>("STD_SURVEY_TYPE_DESCRIPTION_TEXT")),
                ID              = (Int32)GetNullableObject(row.Field <object>("STD_SURVEY_TYPE_ID")),
                INACTIVE_FLAG   = (bool)GetNullableObject(row.Field <object>("STD_SURVEY_TYPE_INACTIVE_FLAG")),
                NAME            = (string)GetNullableObject(row.Field <object>("STD_SURVEY_TYPE_NAME")),
                STD_REGISTRY_ID = (Int32)GetNullableObject(row.Field <object>("STD_SURVEY_TYPE_STD_REGISTRY_ID")),
                UPDATED         = (DateTime)GetNullableObject(row.Field <object>("STD_SURVEY_TYPE_UPDATED")),
                UPDATEDBY       = (string)GetNullableObject(row.Field <object>("STD_SURVEY_TYPE_UPDATEDBY"))
            };

            return(objReturn);
        }
Ejemplo n.º 6
0
        public STD_SURVEY_TYPE GetItem(string CURRENT_USER, Int32 CURRENT_REGISTRY_ID, Int32 ID)
        {
            STD_SURVEY_TYPE objReturn = null;

            SqlConnection  sConn    = null;
            SqlCommand     sCmd     = null;
            SqlDataAdapter sAdapter = null;
            DataSet        objTemp  = null;

            try
            {
                sConn = new SqlConnection(SqlConnectionString);

                sConn.Open();

                sCmd = new SqlCommand("CRS.usp_STD_SURVEY_TYPE_getitem", sConn);
                sCmd.CommandTimeout = SqlCommandTimeout;
                sCmd.CommandType    = CommandType.StoredProcedure;
                sCmd.Parameters.AddWithValue("@CURRENT_USER", CURRENT_USER);
                sCmd.Parameters.AddWithValue("@CURRENT_REGISTRY_ID", CURRENT_REGISTRY_ID);
                sCmd.Parameters.AddWithValue("@ID", ID);

                objTemp  = new DataSet();
                sAdapter = new SqlDataAdapter(sCmd);

                LogDetails logDetails = new LogDetails(String.Format("{0}.{1}", System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.FullName, System.Reflection.MethodBase.GetCurrentMethod().Name), CURRENT_USER, CURRENT_REGISTRY_ID);
                sAdapter.Fill(objTemp);
                LogManager.LogTiming(logDetails);
                CheckDataSet(objTemp);

                if (objTemp != null && objTemp.Tables.Count > 0 && objTemp.Tables[0].Rows.Count > 0)
                {
                    objReturn = ParseReader(objTemp.Tables[0].Rows[0]);
                }

                sConn.Close();
            }
            catch (Exception ex)
            {
                LogManager.LogError(ex.Message, String.Format("{0}.{1}", System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.FullName, System.Reflection.MethodBase.GetCurrentMethod().Name), CURRENT_USER, CURRENT_REGISTRY_ID);
                throw ex;
            }
            finally
            {
                if (sAdapter != null)
                {
                    sAdapter.Dispose();
                    sAdapter = null;
                }
                if (sCmd != null)
                {
                    sCmd.Dispose();
                    sCmd = null;
                }
                if (sConn != null)
                {
                    if (sConn.State != ConnectionState.Closed)
                    {
                        sConn.Close();
                    }
                    sConn.Dispose();
                    sConn = null;
                }
            }

            return(objReturn);
        }
Ejemplo n.º 7
0
        public Int32 Save(string CURRENT_USER, Int32 CURRENT_REGISTRY_ID, STD_SURVEY_TYPE objSave)
        {
            Int32 objReturn = 0;

            SqlConnection  sConn    = null;
            SqlCommand     sCmd     = null;
            SqlParameter   p        = null;
            SqlDataAdapter sAdapter = null;
            DataSet        objTemp  = null;

            try
            {
                sConn = new SqlConnection(SqlConnectionString);

                sConn.Open();

                sCmd = new SqlCommand("CRS.usp_STD_SURVEY_TYPE_save", sConn);
                sCmd.CommandTimeout = SqlCommandTimeout;
                sCmd.CommandType    = CommandType.StoredProcedure;
                sCmd.Parameters.AddWithValue("@CURRENT_USER", CURRENT_USER);
                sCmd.Parameters.AddWithValue("@CURRENT_REGISTRY_ID", CURRENT_REGISTRY_ID);

                p           = new SqlParameter("@CODE", SqlDbType.VarChar, 50);
                p.Precision = 0;
                p.Scale     = 0;
                AddParameter(ref sCmd, ref p, objSave.CODE);
                p           = new SqlParameter("@CREATED", SqlDbType.DateTime, 8);
                p.Precision = 23;
                p.Scale     = 3;
                AddParameter(ref sCmd, ref p, objSave.CREATED);
                p           = new SqlParameter("@CREATEDBY", SqlDbType.VarChar, 30);
                p.Precision = 0;
                p.Scale     = 0;
                AddParameter(ref sCmd, ref p, objSave.CREATEDBY);
                p           = new SqlParameter("@DESCRIPTION_TEXT", SqlDbType.VarChar, 500);
                p.Precision = 0;
                p.Scale     = 0;
                AddParameter(ref sCmd, ref p, objSave.DESCRIPTION_TEXT);
                p           = new SqlParameter("@ID", SqlDbType.Int, 4);
                p.Direction = ParameterDirection.InputOutput;
                p.Precision = 10;
                p.Scale     = 0;
                AddParameter(ref sCmd, ref p, objSave.ID);
                p           = new SqlParameter("@INACTIVE_FLAG", SqlDbType.Bit, 1);
                p.Precision = 1;
                p.Scale     = 0;
                AddParameter(ref sCmd, ref p, objSave.INACTIVE_FLAG);
                p           = new SqlParameter("@NAME", SqlDbType.VarChar, 100);
                p.Precision = 0;
                p.Scale     = 0;
                AddParameter(ref sCmd, ref p, objSave.NAME);
                p           = new SqlParameter("@STD_REGISTRY_ID", SqlDbType.Int, 4);
                p.Precision = 10;
                p.Scale     = 0;
                AddParameter(ref sCmd, ref p, objSave.STD_REGISTRY_ID);
                p           = new SqlParameter("@UPDATED", SqlDbType.DateTime, 8);
                p.Precision = 23;
                p.Scale     = 3;
                AddParameter(ref sCmd, ref p, objSave.UPDATED);
                p           = new SqlParameter("@UPDATEDBY", SqlDbType.VarChar, 30);
                p.Precision = 0;
                p.Scale     = 0;
                AddParameter(ref sCmd, ref p, objSave.UPDATEDBY);

                objTemp  = new DataSet();
                sAdapter = new SqlDataAdapter(sCmd);

                LogDetails logDetails = new LogDetails(String.Format("{0}.{1}", System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.FullName, System.Reflection.MethodBase.GetCurrentMethod().Name), CURRENT_USER, CURRENT_REGISTRY_ID);
                //int cnt = sCmd.ExecuteNonQuery();
                sAdapter.Fill(objTemp);
                LogManager.LogTiming(logDetails);
                CheckDataSet(objTemp);

                objReturn = (Int32)sCmd.Parameters["@ID"].Value;

                sConn.Close();
            }
            catch (Exception ex)
            {
                LogManager.LogError(ex.Message, String.Format("{0}.{1}", System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.FullName, System.Reflection.MethodBase.GetCurrentMethod().Name), CURRENT_USER, CURRENT_REGISTRY_ID);
                throw ex;
            }
            finally
            {
                if (sAdapter != null)
                {
                    sAdapter.Dispose();
                    sAdapter = null;
                }
                if (sCmd != null)
                {
                    sCmd.Dispose();
                    sCmd = null;
                }
                if (sConn != null)
                {
                    if (sConn.State != ConnectionState.Closed)
                    {
                        sConn.Close();
                    }
                    sConn.Dispose();
                    sConn = null;
                }
            }

            return(objReturn);
        }
Ejemplo n.º 8
0
 public static Boolean Delete(string CURRENT_USER, Int32 CURRENT_REGISTRY_ID, STD_SURVEY_TYPE objDelete)
 {
     return(Delete(CURRENT_USER, CURRENT_REGISTRY_ID, objDelete.ID));
 }
        private bool SaveForm(ref string strResult)
        {
            STD_SURVEY_TYPE survey = null;

            int registryId = 0;

            int.TryParse(listRegistries.SelectedValue, out registryId);
            if (registryId > 0)
            {
                if (string.IsNullOrEmpty(txtSurveyName.Text))
                {
                    strResult = "Survey Name is Required<br /><br />";
                }
                else if (string.IsNullOrEmpty(txtSurveyCode.Text))
                {
                    strResult = "Survey Code is Required<br /><br />";
                }
                else if (string.IsNullOrEmpty(txtSurveyDescription.Text))
                {
                    strResult = "Survey Description is Required<br /><br />";
                }
                else
                {
                    int id = 0;
                    if (!string.IsNullOrEmpty(hideSurveyId.Value))
                    {
                        int.TryParse(hideSurveyId.Value, out id);
                    }
                    if (id > 0)
                    {
                        survey = ServiceInterfaceManager.STD_SURVEY_TYPE_GET(HttpContext.Current.User.Identity.Name, UserSession.CurrentRegistryId, id);
                    }
                    if (survey == null)
                    {
                        survey = new STD_SURVEY_TYPE();
                    }

                    survey.STD_REGISTRY_ID = registryId;
                    survey.CREATEDBY       = survey.UPDATEDBY = HttpContext.Current.User.Identity.Name;
                    survey.INACTIVE_FLAG   = false;

                    survey.NAME             = txtSurveyName.Text;
                    survey.CODE             = txtSurveyCode.Text;
                    survey.DESCRIPTION_TEXT = txtSurveyDescription.Text;

                    survey.ID = ServiceInterfaceManager.STD_SURVEY_TYPE_SAVE(HttpContext.Current.User.Identity.Name, UserSession.CurrentRegistryId, survey);
                    if (survey.ID > 0)
                    {
                        hideSurveyId.Value = survey.ID.ToString();
                        strResult          = "Save successful<br /><br />";
                        return(true);
                    }
                    else
                    {
                        strResult = "Error saving Survey, please try again<br /><br />";
                    }
                }
                // else
                // {
                //    strResult = "<ul><li>Survey Name is Required</li></ul>";
                // }
            }
            else
            {
                strResult = "<ul><li>Please select a Registry</li></ul>";
            }

            return(false);
        }