コード例 #1
0
        public static BG_PayIncome AddBG_PayIncome(BG_PayIncome bG_PayIncome)
        {
            string sql =
                "INSERT BG_PayIncome (PIEcoSubCoding, PIEcoSubLev, PIEcoSubParID, PIEcoSubName, PIType, ISSign)" +
                "VALUES (@PIEcoSubCoding, @PIEcoSubLev, @PIEcoSubParID, @PIEcoSubName, @PIType, @ISSign)";

            sql += " ; SELECT @@IDENTITY";

            try
            {
                SqlParameter[] para = new SqlParameter[]
                {
                    new SqlParameter("@PIEcoSubCoding", bG_PayIncome.PIEcoSubCoding),
                    new SqlParameter("@PIEcoSubLev", bG_PayIncome.PIEcoSubLev),
                    new SqlParameter("@PIEcoSubParID", bG_PayIncome.PIEcoSubParID),
                    new SqlParameter("@PIEcoSubName", bG_PayIncome.PIEcoSubName),
                    new SqlParameter("@PIType", bG_PayIncome.PIType),
                    new SqlParameter("@ISSign", bG_PayIncome.ISSign)
                };

                string IdStr = DBUnity.ExecuteScalar(CommandType.Text, sql, para);
                int newId = Convert.ToInt32(IdStr);
                return GetBG_PayIncomeByPIID(newId);

            }
            catch (Exception e)
            {
                Console.WriteLine(e.Message);
                throw e;
            }
        }
コード例 #2
0
        public static BG_PayIncome GetBG_PayIncomeByPIID(int pIID)
        {
            string sql = "SELECT * FROM BG_PayIncome WHERE PIID = @PIID";

            try
            {
                SqlParameter para = new SqlParameter("@PIID", pIID);
                DataTable dt = DBUnity.AdapterToTab(sql, para);

                if(dt.Rows.Count > 0)
                {
                    BG_PayIncome bG_PayIncome = new BG_PayIncome();

                    bG_PayIncome.PIID = dt.Rows[0]["PIID"] == DBNull.Value ? 0 : (int)dt.Rows[0]["PIID"];
                    bG_PayIncome.PIEcoSubCoding = dt.Rows[0]["PIEcoSubCoding"] == DBNull.Value ? "" : (string)dt.Rows[0]["PIEcoSubCoding"];
                    bG_PayIncome.PIEcoSubLev = dt.Rows[0]["PIEcoSubLev"] == DBNull.Value ? 0 : (int)dt.Rows[0]["PIEcoSubLev"];
                    bG_PayIncome.PIEcoSubParID = dt.Rows[0]["PIEcoSubParID"] == DBNull.Value ? 0 : (int)dt.Rows[0]["PIEcoSubParID"];
                    bG_PayIncome.PIEcoSubName = dt.Rows[0]["PIEcoSubName"] == DBNull.Value ? "" : (string)dt.Rows[0]["PIEcoSubName"];
                    bG_PayIncome.PIType = dt.Rows[0]["PIType"] == DBNull.Value ? "" : (string)dt.Rows[0]["PIType"];
                    bG_PayIncome.ISSign = dt.Rows[0]["ISSign"] == DBNull.Value ? 0 : (int)dt.Rows[0]["ISSign"];

                    return bG_PayIncome;
                }
                else
                {
                    return null;
                }
            }
            catch (Exception e)
            {
                Console.WriteLine(e.Message);
                throw e;
            }
        }
コード例 #3
0
 public static bool DeleteBG_PayIncome(BG_PayIncome bG_PayIncome)
 {
     return DeleteBG_PayIncomeByPIID( bG_PayIncome.PIID );
 }
コード例 #4
0
        public static bool ModifyBG_PayIncome(BG_PayIncome bG_PayIncome)
        {
            string sql =
                "UPDATE BG_PayIncome " +
                "SET " +
                    "PIEcoSubCoding = @PIEcoSubCoding, " +
                    "PIEcoSubLev = @PIEcoSubLev, " +
                    "PIEcoSubParID = @PIEcoSubParID, " +
                    "PIEcoSubName = @PIEcoSubName, " +
                    "PIType = @PIType, " +
                    "ISSign = @ISSign " +
                "WHERE PIID = @PIID";

            try
            {
                SqlParameter[] para = new SqlParameter[]
                {
                    new SqlParameter("@PIID", bG_PayIncome.PIID),
                    new SqlParameter("@PIEcoSubCoding", bG_PayIncome.PIEcoSubCoding),
                    new SqlParameter("@PIEcoSubLev", bG_PayIncome.PIEcoSubLev),
                    new SqlParameter("@PIEcoSubParID", bG_PayIncome.PIEcoSubParID),
                    new SqlParameter("@PIEcoSubName", bG_PayIncome.PIEcoSubName),
                    new SqlParameter("@PIType", bG_PayIncome.PIType),
                    new SqlParameter("@ISSign", bG_PayIncome.ISSign)
                };

                int t = DBUnity.ExecuteNonQuery(CommandType.Text, sql, para);
                if(t>0)
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
            catch (Exception e)
            {
                Console.WriteLine(e.Message);
                throw e;
            }
        }
コード例 #5
0
 public static List<BG_PayIncome> GetPIList()
 {
     List<BG_PayIncome> list = new List<BG_PayIncome>();
     DataTable dt = GetDtAllPayIncome();
     if (dt.Rows.Count > 0)
     {
         for (int i = 0; i < dt.Rows.Count; i++)
         {
             if (dt.Rows[i]["PIEcoSubCoding"] != null && dt.Rows[i]["PIEcoSubName"] != null)
             {
                 BG_PayIncome pi = new BG_PayIncome();
                 pi.PIEcoSubCoding = dt.Rows[i]["PIEcoSubCoding"].ToString().Trim();
                 pi.PIEcoSubName = dt.Rows[i]["PIEcoSubName"].ToString();
                 list.Add(pi);
             }
         }
     }
     return list;
 }