using DAL.Models; namespace API.Hashing.Interfaces { public interface IHashingFactory { public IHashingAlgorithm? getAlgorithm(HashingType type); } }