@@ -20,6 +20,7 @@ import com.niyaj.common.tags.ProfileTestTags.TAG_EMPTY_ERROR
20
20
import com.niyaj.common.utils.Resource
21
21
import com.niyaj.common.utils.ValidationResult
22
22
import com.niyaj.common.utils.isValidPassword
23
+ import com.niyaj.data.mapper.toEntity
23
24
import com.niyaj.data.repository.RestaurantInfoRepository
24
25
import com.niyaj.data.repository.validation.RestaurantInfoValidationRepository
25
26
import com.niyaj.database.model.RestaurantInfoEntity
@@ -87,7 +88,7 @@ class RestaurantInfoRepositoryImpl(
87
88
restaurant.logo = imageName
88
89
restaurant.updatedAt = System .currentTimeMillis().toString()
89
90
} else {
90
- val newRestaurant = RestaurantInfoEntity ()
91
+ val newRestaurant = RestaurantInfo ().toEntity ()
91
92
newRestaurant.restaurantId = RESTAURANT_ID
92
93
newRestaurant.logo = imageName
93
94
newRestaurant.createdAt = System .currentTimeMillis().toString()
@@ -115,7 +116,7 @@ class RestaurantInfoRepositoryImpl(
115
116
restaurant.printLogo = imageName
116
117
restaurant.updatedAt = System .currentTimeMillis().toString()
117
118
} else {
118
- val newRestaurant = RestaurantInfoEntity ()
119
+ val newRestaurant = RestaurantInfo ().toEntity ()
119
120
newRestaurant.restaurantId = RESTAURANT_ID
120
121
newRestaurant.printLogo = imageName
121
122
newRestaurant.createdAt = System .currentTimeMillis().toString()
0 commit comments