public void Update(string id, SvcRepositoryDto repository)
 {
     this.command.Update(id, repository);
 }
        public ISvcRepository Add(SvcRepositoryDto dto)
        {
            var repository = this.command.Add(dto);

            return(repository);
        }