-
Notifications
You must be signed in to change notification settings - Fork 2
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
20 changed files
with
102 additions
and
26 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
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
9 changes: 9 additions & 0 deletions
9
src/main/java/com/production/ehayvanbackendapi/Repositories/AppointmentRepository.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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.production.ehayvanbackendapi.Repositories; | ||
|
||
import com.production.ehayvanbackendapi.Entities.Appointment; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
import org.springframework.stereotype.Repository; | ||
|
||
@Repository | ||
public interface AppointmentRepository extends JpaRepository<Appointment, Integer> { | ||
} |
9 changes: 9 additions & 0 deletions
9
src/main/java/com/production/ehayvanbackendapi/Repositories/CustomerRepository.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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.production.ehayvanbackendapi.Repositories; | ||
|
||
import com.production.ehayvanbackendapi.Entities.Customer; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
import org.springframework.stereotype.Repository; | ||
|
||
@Repository | ||
public interface CustomerRepository extends JpaRepository<Customer, Integer> { | ||
} |
9 changes: 9 additions & 0 deletions
9
src/main/java/com/production/ehayvanbackendapi/Repositories/MedTypeRepository.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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.production.ehayvanbackendapi.Repositories; | ||
|
||
import com.production.ehayvanbackendapi.Entities.MedType; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
import org.springframework.stereotype.Repository; | ||
|
||
@Repository | ||
public interface MedTypeRepository extends JpaRepository<MedType, Integer> { | ||
} |
9 changes: 9 additions & 0 deletions
9
src/main/java/com/production/ehayvanbackendapi/Repositories/MedicationRepository.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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.production.ehayvanbackendapi.Repositories; | ||
|
||
import com.production.ehayvanbackendapi.Entities.Medication; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
import org.springframework.stereotype.Repository; | ||
|
||
@Repository | ||
public interface MedicationRepository extends JpaRepository<Medication, Integer> { | ||
} |
9 changes: 9 additions & 0 deletions
9
src/main/java/com/production/ehayvanbackendapi/Repositories/PetOwnerRepository.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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.production.ehayvanbackendapi.Repositories; | ||
|
||
import com.production.ehayvanbackendapi.Entities.PetOwner; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
import org.springframework.stereotype.Repository; | ||
|
||
@Repository | ||
public interface PetOwnerRepository extends JpaRepository<PetOwner, Integer> { | ||
} |
9 changes: 9 additions & 0 deletions
9
src/main/java/com/production/ehayvanbackendapi/Repositories/PetRepository.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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.production.ehayvanbackendapi.Repositories; | ||
|
||
import com.production.ehayvanbackendapi.Entities.Pet; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
import org.springframework.stereotype.Repository; | ||
|
||
@Repository | ||
public interface PetRepository extends JpaRepository<Pet, Integer> { | ||
} |
9 changes: 9 additions & 0 deletions
9
src/main/java/com/production/ehayvanbackendapi/Repositories/PetTypeRepository.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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.production.ehayvanbackendapi.Repositories; | ||
|
||
import com.production.ehayvanbackendapi.Entities.PetType; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
import org.springframework.stereotype.Repository; | ||
|
||
@Repository | ||
public interface PetTypeRepository extends JpaRepository<PetType, Integer> { | ||
} |
10 changes: 10 additions & 0 deletions
10
src/main/java/com/production/ehayvanbackendapi/Repositories/ScheduleRepository.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.production.ehayvanbackendapi.Repositories; | ||
|
||
import com.production.ehayvanbackendapi.Entities.Schedule; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
import org.springframework.stereotype.Repository; | ||
|
||
@Repository | ||
public interface ScheduleRepository extends JpaRepository<Schedule, Integer> { | ||
|
||
} |
10 changes: 10 additions & 0 deletions
10
src/main/java/com/production/ehayvanbackendapi/Repositories/UserTypeRepository.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.production.ehayvanbackendapi.Repositories; | ||
|
||
import com.production.ehayvanbackendapi.Entities.UserType; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
import org.springframework.stereotype.Repository; | ||
|
||
@Repository | ||
public interface UserTypeRepository extends JpaRepository<UserType, Integer> { | ||
|
||
} |
10 changes: 10 additions & 0 deletions
10
src/main/java/com/production/ehayvanbackendapi/Repositories/VeterinarianRepository.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.production.ehayvanbackendapi.Repositories; | ||
|
||
import com.production.ehayvanbackendapi.Entities.Veterinarian; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
import org.springframework.stereotype.Repository; | ||
|
||
@Repository | ||
public interface VeterinarianRepository extends JpaRepository<Veterinarian, Integer> { | ||
|
||
} |