Example #1
0
 public TestController(ApplicationDbContext context, UserManager <ApplicationUser> userManager, IMapper mapper, IAPNSService apns, IRepository repository, IMLService mLService)
 {
     _context     = context;
     _userManager = userManager;
     _mapper      = mapper;
     _apns        = apns;
     _repository  = repository;
     _mLService   = mLService;
 }
Example #2
0
 public MLService(IAPNSService apns)
 {
     _apns = apns;
 }