15 lines
364 B
C#
15 lines
364 B
C#
|
using Birdmap.BLL.Interfaces;
|
|||
|
|
|||
|
namespace Birdmap.BLL.Services.CommunicationServices
|
|||
|
{
|
|||
|
internal class CommunicationServiceProvider : ICommunicationServiceProvider
|
|||
|
{
|
|||
|
public ICommunicationService Service { get; }
|
|||
|
|
|||
|
public CommunicationServiceProvider(ICommunicationService service)
|
|||
|
{
|
|||
|
Service = service;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|