Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 5432 |
amar.kumar |
1 |
package in.shop2020.user.persistence;
|
|
|
2 |
|
|
|
3 |
import java.util.List;
|
|
|
4 |
|
|
|
5 |
import org.apache.ibatis.annotations.Param;
|
|
|
6 |
import in.shop2020.user.domain.Address;
|
|
|
7 |
|
|
|
8 |
public interface AddressMapper {
|
|
|
9 |
|
|
|
10 |
void addAddressForUser(Address dbAddress);
|
|
|
11 |
|
|
|
12 |
Address getAddress(long addressId);
|
|
|
13 |
|
|
|
14 |
void disableAddress(long addressId);
|
|
|
15 |
|
|
|
16 |
List<in.shop2020.user.domain.Address> getAllAddressesForUser(long userId);
|
|
|
17 |
|
|
|
18 |
String getPincodeForAddress(long id);
|
|
|
19 |
|
|
|
20 |
}
|