Ejemplo n.º 1
0
 public void Update(SexyService sexyService)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 2
0
 public void Update(SexyService sexyService)
 {
     _sexyServiceRepository.Update(sexyService);
 }
Ejemplo n.º 3
0
 public void Insert(SexyService sexyService)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 4
0
        public void Insert(SexyService sexyService)
        {
            sexyService.Id = Guid.NewGuid().ToString();

            _sexyServiceRepository.Insert(sexyService);
        }