Beispiel #1
0
 public void DeleteTalentHunter(TalentHunters th)
 {
     if (th == null)
     {
         throw new ArgumentNullException(nameof(th));
     }
     _context.TalentHunters.Remove(th);
 }
Beispiel #2
0
        public void CreateTalentHunter(TalentHunters th)
        {
            if (th == null)
            {
                throw new ArgumentNullException(nameof(th));
            }

            _context.TalentHunters.Add(th);
        }
Beispiel #3
0
 public void UpdateTalentHunter(TalentHunters th)
 {
     // Do Nothing
 }