Beispiel #1
0
 public async Task <Contact> Get(int id)
 {
     try
     {
         return(await StoreDB.GetContactByIdAsync(id));
     }
     catch (Exception)
     {
         return(null);
     }
 }