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

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

            _tempStaffMasterRepository.Insert(tempStaff);
        }