예제 #1
0
 public AccountService(/*HttpClient httpClient,*/ ISessionStorageService sessionStorageService, SIGOAContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
     //_httpClient = httpClient;
     _sessionStorageService = sessionStorageService;
     //_httpClientFactory = httpClientFactory;
 }
예제 #2
0
 public UserService(SIGOAContext db)
 {
     _db = db;
 }
예제 #3
0
 public PaymentlogService(SIGOAContext db, IMapper mapper, ISessionStorageService sessionStorageService)
 {
     _db     = db;
     _mapper = mapper;
     _sessionStorageService = sessionStorageService;
 }
예제 #4
0
 public CustomerService(SIGOAContext db, IMapper mapper, ISessionStorageService sessionStorageService)
 {
     _db     = db;
     _mapper = mapper;
     _sessionStorageService = sessionStorageService;
 }