public WelcomeLetterProjection(
     IReadOnlyRepository <CustomerAccountReadItem> repository,
     IPostalService postalService)
 {
     _repository    = repository;
     _postalService = postalService;
 }
Esempio n. 2
0
 //Constructor
 public CClientInspector(string pToken, string pDescription, string pAddress = "127.0.0.1", string pMethod = "POST", string pContentType = "application/json")
 {
     //currentTick = 0;
     correspondenceFrequency = 5000.0f;
     inspectorCreatingTime   = DateTime.Now;
     installationToken       = pToken;
     installationDescription = pDescription;
     sessionID     = Guid.NewGuid().ToString();
     messageBasket = new List <CMessage>();
     postalService = new CClientPostman("http://" + pAddress, pMethod, pContentType);
 }
 public MessagingService(IEmailService email, IPostalService postal)
 {
 }
 public AddressService(IPostalService post)
 {
 }