Exemple #1
0
        public static int UpdateInformation(A2ZLSECURITYDTO dto)
        {
            dto.LSecurityDescription = (dto.LSecurityDescription != null) ? dto.LSecurityDescription.Trim().Replace("'", "''") : "";
            int    rowEffect = 0;
            string strQuery  = "UPDATE A2ZLSECURITY set LSecurityCode='" + dto.LSecurityCode + "',LSecurityDescription='" + dto.LSecurityDescription + "' where LSecurityCode='" + dto.LSecurityCode + "'";

            rowEffect = Converter.GetInteger(BLL.CommonManager.Instance.ExecuteNonQuery(strQuery, "A2ZCSCUBS"));
            if (rowEffect == 0)
            {
                return(0);
            }
            else
            {
                return(1);
            }
        }
Exemple #2
0
        public static A2ZLSECURITYDTO GetInformation(Int16 Lscode)
        {
            DataTable dt = BLL.CommonManager.Instance.GetDataTableByQuery("SELECT * FROM A2ZLSECURITY WHERE LSecurityCode = " + Lscode, "A2ZCSCUBS");


            var p = new A2ZLSECURITYDTO();

            if (dt.Rows.Count > 0)
            {
                p.LSecurityCode        = Converter.GetSmallInteger(dt.Rows[0]["LSecurityCode"]);
                p.LSecurityDescription = Converter.GetString(dt.Rows[0]["LSecurityDescription"]);
                return(p);
            }
            p.LSecurityCode = 0;

            return(p);
        }
Exemple #3
0
        public static int InsertInformation(A2ZLSECURITYDTO dto)
        {
            dto.LSecurityDescription = (dto.LSecurityDescription != null) ? dto.LSecurityDescription.Trim().Replace("'", "''") : "";
            int    rowEffect = 0;
            string strQuery  = @"INSERT into A2ZLSECURITY(LSecurityCode,LSecurityDescription)values('" + dto.LSecurityCode + "','" + dto.LSecurityDescription + "')";

            rowEffect = Converter.GetInteger(BLL.CommonManager.Instance.ExecuteNonQuery(strQuery, "A2ZCSCUBS"));

            if (rowEffect == 0)
            {
                return(0);
            }
            else
            {
                return(1);
            }
        }