Example #1
0
        public async Task TambahKategori(Kategori kategori)
        {
            KategoriDAL kategoriDAL = new KategoriDAL();

            try
            {
                await kategoriDAL.TambahKategori(kategori);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }