in your component you are only doing one-way binding as you only define the get, not the event binding:
<InputText @bind-Value="modeltodoTask.Text"></InputText>
try the @bind helper (which maps the onchange event) instead:
<InputText @bind="modeltodoTask.Text"></InputText>
please read the docs on binding: