It's not entirely clear what your question is, but I suspect that you either want to add an explicit constructor without parameters to your child class:
public Child() : base("foo", "bar") {
}
or add both parameterized and without parameters:
public Child() {
}
public Child(string foo, string bar) : base(foo, bar) {
}
, - , , , . .
.