60 lines
1.2 KiB
Kotlin
60 lines
1.2 KiB
Kotlin
package org.example.data
|
|
|
|
import org.example.data.model.ShoesDTO
|
|
import org.example.data.model.UserDTO
|
|
|
|
val userList = listOf(
|
|
UserDTO(
|
|
userId = 1,
|
|
firstName = "Andrey",
|
|
password = "123",
|
|
email = "test@mail.ru"
|
|
),
|
|
UserDTO(
|
|
userId = 2,
|
|
firstName = "Alexey",
|
|
password = "321",
|
|
email = "test2@mail.ru"
|
|
),
|
|
UserDTO(
|
|
userId = 3,
|
|
firstName = "Oleg",
|
|
password = "423",
|
|
email = "test3@mail.ru",
|
|
),
|
|
)
|
|
|
|
val shoes = listOf(
|
|
ShoesDTO(
|
|
id = 1,
|
|
name = "MegaSuperShoes",
|
|
size = 40.5,
|
|
brand = "Gucci",
|
|
color = "Black",
|
|
price = 1000.0
|
|
),
|
|
ShoesDTO(
|
|
id = 2,
|
|
name = "MegaSuperUltraShoes",
|
|
size = 41.5,
|
|
brand = "Gucci",
|
|
color = "Black",
|
|
price = 10000.0
|
|
),
|
|
ShoesDTO(
|
|
id = 3,
|
|
name = "MegaSuperUltraProShoes",
|
|
size = 42.5,
|
|
brand = "Gucci",
|
|
color = "Black",
|
|
price = 100000.0
|
|
),
|
|
ShoesDTO(
|
|
id = 4,
|
|
name = "MegaSuperUltraProMaxShoes",
|
|
size = 42.0,
|
|
brand = "Gucci",
|
|
color = "Black",
|
|
price = 1000000.0
|
|
)
|
|
) |