Assuming you have access to the source code, and this isn't in a 3rd party assembly you're referencing...
Find the definition of the class ResumeBankViewModel
(ViewModels\ResumeBankViewModel.cs is probably a good place to start.)
And add this line:
public ResumeBankViewModel(){ }
If there is a line like this:
private ResumeBankViewModel() /* { etc. } */
Or this:
internal ResumeBankViewModel() /* { etc. } */
You might change the private
/internal
to public
.
You may also wish to look at the other public constructors that are already defined and pass some appropriate values to one of them:
public ResumeBankViewModel() : this(value1, value2, value3) { }
Or make it's parameters optional:
public ResumeBankViewModel(object arg1 = value1, object arg2 = value2, object arg3 = value3)
Any of these might lead to more issues that you will need to work through, but one of these is the bare minimum to clear this error.