Example #1
0
 public TestCController(ISeessionData sdata, IHttpContextAccessor httpcontext, IEmailSender EMAIL, IAnotherTestService anotherTestService, IRepository <TestModels> testModel)
 {
     _testModel          = testModel;
     _anotherTestService = anotherTestService;
     _EMAIL       = EMAIL;
     _httpcontext = httpcontext;
     _sdata       = sdata;
 }
Example #2
0
 public TestAController(ITestService testService, IAnotherTestService anotherTestService, IContainer container
                        //, IRepository<Sample> sampleRepository
                        )
 {
     _testService        = testService;
     _anotherTestService = anotherTestService;
     _Container          = container;
     //_sampleRepository = sampleRepository;
 }
Example #3
0
 public TestAController(ITestService testService, IAnotherTestService anotherTestService)
 {
     _testService        = testService;
     _anotherTestService = anotherTestService;
 }
Example #4
0
 public TestAController(ITestService testService, IAnotherTestService anotherTestService, IRepository<Sample> sampleRepository)
 {
     _testService = testService;
     _anotherTestService = anotherTestService;
     _sampleRepository = sampleRepository;
 }
Example #5
0
 public TestAController(ITestService testService, IAnotherTestService anotherTestService, IRepository <Sample> sampleRepository)
 {
     _testService        = testService;
     _anotherTestService = anotherTestService;
     _sampleRepository   = sampleRepository;
 }