public ContactRequestController(IContactRequestRepository contactRequestRepository, IEmailManager emailManager)
 {
     this.contactRequestRepository = contactRequestRepository;
     this.emailManager             = emailManager;
 }
Ejemplo n.º 2
0
 public ContactRequestService(IContactRequestRepository ctcrepo)
 {
     this._ctcrepo = ctcrepo;
 }