Statements such as:
DependencyService.Get<isqlite>().UpdateEmployee(employeeDetails);
are a bad idea. If the
Get
call fails for any reason then a
NullPointerException
will follow. And since your code is not catching exceptions you will likely miss the critical information.