public async Task <bool> Delete([FromBody] User user)
 {
     return(await dataProvider.DeleteUserAsync(user));
 }