示例#1
0
        public tbl_OrtakFatura FindById(int id)
        {
            SqlParameter[] parms = new SqlParameter[] {
                new SqlParameter(PARM_ID, SqlDbType.Int, 4),
            };
            parms[0].Value = id;

            using (SqlDataReader reader = SQLHelper.ExecuteReader(SQLHelper.BilisimLibraryDbConnectionString, CommandType.Text, SQL_FIND_BY_ID, parms))
            {
                if (reader.Read())
                {
                    tbl_OrtakFatura bilgi = new tbl_OrtakFatura();
                    bilgi.PopulateDataReader(reader);
                    return(bilgi);
                }
                else
                {
                    throw new DBKayitBulunamadiException(this.GetType(), "SQL_FIND_BY_ID", id);
                }
            }
        }
示例#2
0
        public tbl_OrtakFatura FindByAboneNoDaireNo(string aboneNo, string daireNo)
        {
            string commanText = "select * from tbl_OrtakFatura where fatura_abone_no='" + aboneNo + "' and daire_no='" + daireNo + "'";

            SqlParameter[] parms = new SqlParameter[] {
                new SqlParameter(PARM_ID, SqlDbType.Int, 4),
            };
            parms[0].Value = id;

            using (SqlDataReader reader = SQLHelper.ExecuteReader(SQLHelper.BilisimLibraryDbConnectionString, CommandType.Text, commanText, parms))
            {
                if (reader.Read())
                {
                    tbl_OrtakFatura bilgi = new tbl_OrtakFatura();
                    bilgi.PopulateDataReader(reader);
                    return(bilgi);
                }
                else
                {
                    throw new DBKayitBulunamadiException(this.GetType(), "FindByAboneNoDaireNo", id);
                }
            }
        }