Exemplo n.º 1
0
 public MessageController(IEtextingRepository repo, IEtextingIdentityService identityService )
     : base(repo)
 {
     _identityService = identityService;
 }
Exemplo n.º 2
0
 public SmsController(IEtextingRepository repo)
     : base(repo)
 {
     _repo = repo;
 }
Exemplo n.º 3
0
 public VoiceCallController(IEtextingRepository repo)
     : base(repo)
 {
     _repo = repo;
 }
Exemplo n.º 4
0
 public BaseApiController(IEtextingRepository repo)
 {
     _repo = repo;
 }
Exemplo n.º 5
0
 public ContactGroupController(IEtextingRepository repo, IEtextingIdentityService identityService)
     : base(repo)
 {
     _identityService = identityService;
 }
Exemplo n.º 6
0
 public ContactGroupController(IEtextingRepository repo, IEcontactIdentityService identityService)
     : base(repo, identityService)
 {
 }
Exemplo n.º 7
0
 public ModelFactory(IEtextingRepository repo, IEcontactIdentityService identityService)
 {
     _repo = repo;
     _identityService = identityService;
 }
Exemplo n.º 8
0
 public ModelFactoryDefault(HttpRequestMessage request, IEtextingRepository repo)
 {
     _urlHelper = new UrlHelper(request);
     _repo = repo;
 }
 public NotificationsController(IEtextingRepository repo, IEtextingIdentityService identityService )
     : base(repo)
 {
     _identityService = identityService;
 }
Exemplo n.º 10
0
 public NotificationController(IEtextingRepository repo,IEcontactIdentityService identityService)
     : base(repo,identityService)
 {
 }
Exemplo n.º 11
0
 public TokenController(IEtextingRepository repo,IAuthTokenHandler authHandler)
     : base(repo)
 {
     _authHandler = authHandler;
 }
Exemplo n.º 12
0
 protected BaseController(IEtextingRepository repo)
 {
     _repo = repo;
 }
Exemplo n.º 13
0
 protected BaseController(IEtextingRepository repo,IEcontactIdentityService identityService)
 {
     _repo = repo;
     _identityService = identityService;
 }