Beispiel #1
0
        public void CreateIdeaInteractionType(IdeaInteractionType cmd)
        {
            if (cmd == null)
            {
                throw new ArgumentNullException(nameof(cmd));
            }

            _access.IdeaInteractionTypes.Add(cmd);
        }
Beispiel #2
0
 public void UpdateIdeaInteractionType(IdeaInteractionType IdeaInteractionType)
 {
     _access.Update(IdeaInteractionType);
 }
Beispiel #3
0
 public void DeleteIdeaInteractionType(IdeaInteractionType IdeaInteractionType)
 {
     _access.Remove(IdeaInteractionType);
 }