Example #1
0
 public async Task DeleteLogin(int id)
 {
     try
     {
         await _loginProvider.DeleteLogin(id);
     }
     catch (Exception e)
     {
         throw new Exception(e.Message);
     }
 }