Advertisement
Guest User

CariProdukController

a guest
Jul 17th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.54 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package controller;
  7.  
  8. import view.FormCariProduk;
  9. import java.sql.SQLException;
  10.  
  11. /**
  12.  *
  13.  * @author Rendra Triyanto
  14.  */
  15. public interface CariProdukController {
  16.     public void Tampil (FormCariProduk cb) throws SQLException;
  17.     public void KlikTabel (FormCariProduk cb) throws SQLException;
  18.     public void Cari (FormCariProduk cb) throws SQLException;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement