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