The question is as follows:
Design a simple digital filter of the form $$y[n] = a_0 x[n] + a_1 x[n-1] + a_2 x[n-2]$$ to remove a narrowband disturbance with frequency $f_0 = 70 \,\rm{Hz}$. Let $f_s = 280 \, \rm{Hz}$ be the sampling frequency.
a) Determine the desired zeros and poles of the filter.
So in order to find the zeroes and poles; First I find the transfer function:
$$ H(z) = K \frac{(z-z_1)(z-z_2)}{(z-p_1)(z-p_2)} $$
However, since we want to remove the disturbance, we must have $H(e^{i\omega_0})$ such that $ \omega_0 = 2 \pi \left( \frac{f_0}{f_s} \right) = \frac{\pi}{2}$. This means that we have $z_1 = i$ and $z_2 = -i$. I assume I've worked out the zeroes correctly. However, I'm not sure how to calculate the poles. Any guidance would be appreciated.
EDIT: Follow up question:
What would be the process in calculating the transform function for the filter. Where
$$y[n] = a_0x[n] + a_1x[n-1] + a_2x[n-2]+b_1y[n-1]+b_2y[n-2]$$