Beispiel #1
0
        public string CreateTap(string name)
        {
            var id  = _tapRepository.NextIdentity();
            var tap = new Tap(id, name);

            _tapRepository.Add(tap);

            return(id);
        }