public ShortMessageServiceAbstraction(IMessageServiceImplementation implementation) : base(implementation)
 {
 }
Exemplo n.º 2
0
 public MessageService(IDependencyService dependencyService)
 {
     this.messageServiceImplementation = dependencyService.Get <IMessageServiceImplementation>();
 }
Exemplo n.º 3
0
 public MessageServiceAbstraction(IMessageServiceImplementation implementation)
 {
     Implementation = implementation;
 }