public async Task CreateOrEdit(CreateOrEditChildDto input)
{
if (input.Id == null)
{
await Create(input);
}
else
{
Update(input);
}
}