using Birdmap.BLL.Interfaces; namespace Birdmap.BLL.Services.CommunicationServices { internal class CommunicationServiceProvider : ICommunicationServiceProvider { public ICommunicationService Service { get; } public CommunicationServiceProvider(ICommunicationService service) { Service = service; } } }