public static Boolean UpdateAttribute(Support_Classes.Attribute objAttribute)
        {
            Boolean updateSuccessful = false;

            updateSuccessful = Attribute_DL.UpdateAttributeRecord(objAttribute);
            return(updateSuccessful);
        }
        public static Boolean InsertAttribute(Support_Classes.Attribute objAttribute)
        {
            bool insertSuccessful = false;

            insertSuccessful = Attribute_DL.InsertAttributeRecord(objAttribute);
            return(insertSuccessful);
        }
Exemple #3
0
        public static Boolean InsertAttributeRecord(Support_Classes.Attribute objAttribute)
        {
            bool insertSuccessful = false;

            if (objAttribute == (Support_Classes.Attribute)null)
            {
                return(insertSuccessful);
            }

            string insertString = "INSERT INTO dbo.tblAttribute (attribute_name) VALUES ('{0}')";

            insertString = string.Format(insertString, objAttribute.Attribute_Name);

            insertSuccessful = Data_Layer.InsertTypeRecord(insertString, Data_Layer.ltConnectionString);

            return(insertSuccessful);
        }
Exemple #4
0
        public static List <Support_Classes.Attribute> GetAttributeRecordList()
        {
            List <Support_Classes.Attribute> lstAttribute = null;

            string selectString = "select attribute_id, attribute_name from dbo.tblAttribute";

            Support_Classes.Attribute objAttribute;

            lstAttribute = new List <Support_Classes.Attribute>();

            SqlConnection conn = new SqlConnection(Data_Layer.ltConnectionString);
            SqlCommand    comm = new SqlCommand(selectString, conn);
            SqlDataReader rdr;

            try
            {
                conn.Open();
                rdr = comm.ExecuteReader();
                while (rdr.Read())
                {
                    objAttribute = new Support_Classes.Attribute();

                    objAttribute.Attribute_Id   = Convert.ToInt32(rdr["attribute_id"]);
                    objAttribute.Attribute_Name = Convert.ToString(rdr["attribute_name"]);

                    lstAttribute.Add(objAttribute);
                }
            }
            catch
            {
                lstAttribute = null;
            }
            finally
            {
                conn.Dispose();
                conn.Close();
                comm.Dispose();
            }
            return(lstAttribute);
        }
Exemple #5
0
        public static Boolean UpdateAttributeRecord(Support_Classes.Attribute objAttribute)
        {
            bool updateSuccessful = false;

            if (objAttribute == null)
            {
                return(updateSuccessful);
            }

            if (string.IsNullOrEmpty(objAttribute.Attribute_Name))
            {
                return(updateSuccessful);
            }

            string updateString = "UPDATE tblAttribute SET attribute_name = '{0}' WHERE attribute_id = {1}";

            updateString = string.Format(updateString, objAttribute.Attribute_Name, objAttribute.Attribute_Id);

            updateSuccessful = Data_Layer.UpdateTypeRecord(updateString, Data_Layer.ltConnectionString);

            return(updateSuccessful);
        }