// update temp staff master data public void updateTempStaffMaster(TempStaffMaster tempStaff) { if (tempStaff == null) { throw new ArgumentNullException("tempStaff"); } _tempStaffMasterRepository.Update(tempStaff); }
// insert temp staff master data public void insertTempStaffMaster(TempStaffMaster tempStaff) { if (tempStaff == null) { throw new ArgumentNullException("tempStaff"); } _tempStaffMasterRepository.Insert(tempStaff); }