public IBarangModel GetById(object id)
 {
     return(_repo.GetById(id));
 }
Example #2
0
 public BarangModel GetById(int id)
 {
     return(_barangRepository.GetById(id));
 }