birbmap/Birdmap.BLL/Services/CommunationServices/CommunicationServiceProvide...

15 lines
364 B
C#
Raw Normal View History

2021-01-16 15:23:10 +01:00
using Birdmap.BLL.Interfaces;
namespace Birdmap.BLL.Services.CommunicationServices
{
internal class CommunicationServiceProvider : ICommunicationServiceProvider
{
public ICommunicationService Service { get; }
public CommunicationServiceProvider(ICommunicationService service)
{
Service = service;
}
}
}