Пример #1
0
        public override ISteganographyAlgorithms GetImplementationByFormat(ESupportedAlgorithms format)
        {
            switch (format)
            {
            case ESupportedAlgorithms.ClasicAlgo:
                return(new ClassicAlgorithm());

            default:
                throw new NotImplementedException();
            }
        }
 public abstract ISteganographyAlgorithms GetImplementationByFormat(ESupportedAlgorithms format);