-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
125 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 1 addition & 61 deletions
62
...oid/app/src/main/java/com/aleengo/iconvert/persistence/repository/FavoriteRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,9 @@ | ||
package com.aleengo.iconvert.persistence.repository; | ||
|
||
import com.aleengo.iconvert.domain.Repository; | ||
import com.aleengo.iconvert.domain.model.FavoriteEntity; | ||
import com.aleengo.iconvert.persistence.model.db.CurrencyData; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* Copyright (c) Aleengo, 2019. All rights reserved. | ||
* Created by bau.cj on 04/07/2019. | ||
*/ | ||
public class FavoriteRepository implements Repository { | ||
|
||
@Override | ||
public void search(String query, SearchCallback callback) { | ||
|
||
} | ||
|
||
@Override | ||
public void getCurrency(String query, GetCallback callback) { | ||
|
||
} | ||
|
||
@Override | ||
public void addAll(List<CurrencyData> currencies) { | ||
|
||
} | ||
|
||
@Override | ||
public void getCurrencies(GetCallback callback) { | ||
|
||
} | ||
|
||
@Override | ||
public void getRates(GetCallback callback) { | ||
|
||
} | ||
|
||
@Override | ||
public void loadRatesAndCurrencies() { | ||
|
||
} | ||
|
||
@Override | ||
public void getFavorites(GetCallback callback) { | ||
|
||
} | ||
|
||
@Override | ||
public void addFavorite(FavoriteEntity favorite, AddCallback callback) { | ||
|
||
} | ||
|
||
@Override | ||
public void addAllFavorites(List<FavoriteEntity> favorites, AddCallback callback) { | ||
|
||
} | ||
|
||
@Override | ||
public void removeFavorites() { | ||
|
||
} | ||
|
||
@Override | ||
public void removeFavorite(FavoriteEntity favorite) { | ||
public class FavoriteRepository { | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.