namespace DownloadManager.Models.UrlGetter { public class UrlGetterFactory { public static IUrlGetter CreateUrlGetter(UrlGetterType type) { return type switch { UrlGetterType.Direct => new DirectUrlGetter(), UrlGetterType.Yande => new YandeUrlGetter(), _ => throw new ArgumentException("Invalid UrlGetterType"), }; } } }