public master_supplier GetById(int Id)
 {
     Uow = new UnitOfWorks();
     _masterSupplierRepo = Uow.GetGenericRepository <master_supplier>();
     return(_masterSupplierRepo.GetByID(Id));
 }
 public master_petugas GetById(int Id)
 {
     Uow = new UnitOfWorks();
     _masterPetugasRepo = Uow.GetGenericRepository <master_petugas>();
     return(_masterPetugasRepo.GetByID(Id));
 }
 public master_item GetById(int Id)
 {
     Uow             = new UnitOfWorks();
     _masterItemRepo = Uow.GetGenericRepository <master_item>();
     return(_masterItemRepo.GetByID(Id));
 }