Example #1
0
 public async Task DeleteKategori(int kategoriID)
 {
     try
     {
         KategoriDAL kategoriDAL = new KategoriDAL();
         await kategoriDAL.DeleteKategori(kategoriID);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }