public CampgroundService(IBaseHttp http)
 {
     _http = http;
 }
Exemple #2
0
 public CommentService(IBaseHttp http)
 {
     _http = http;
 }
Exemple #3
0
 public SignupService(IBaseHttp http)
 {
     _http = http;
 }
Exemple #4
0
 public AuthService(IBaseHttp http, ILocalStorageService storage)
 {
     _http    = http;
     _storage = storage;
 }