예제 #1
0
 /// <summary>
 /// Check if address exists
 /// </summary>
 /// <param name="countryId"></param>
 /// <param name="cityId"></param>
 /// <param name="districtId"></param>
 /// <param name="street"></param>
 /// <returns></returns>
 public async Task <bool> AddressExistsAsync(int countryId, int cityId, int districtId, string street, string name)
 {
     return(await _addressRepository.AddressExistsAsync(countryId, cityId, districtId, street, name));
 }