Example #1
0
        // update temp staff master data
        public void updateTempStaffMaster(TempStaffMaster tempStaff)
        {
            if (tempStaff == null)
            {
                throw new ArgumentNullException("tempStaff");
            }

            _tempStaffMasterRepository.Update(tempStaff);
        }
Example #2
0
        // insert temp staff master data
        public void insertTempStaffMaster(TempStaffMaster tempStaff)
        {
            if (tempStaff == null)
            {
                throw new ArgumentNullException("tempStaff");
            }

            _tempStaffMasterRepository.Insert(tempStaff);
        }