public Form GetById(int id) { return(formDAL.GetById(id)); }
public void should_get_form_id() { var f = formDAL.GetById(1); Assert.IsNotNull(f); }