Checkpoint kinda workls. Ill take a nap and go bacjk to work

This commit is contained in:
Filip Izydorczyk
2020-09-29 17:21:34 +02:00
parent 4efedf7f35
commit 3ad4d3a84b
7 changed files with 121 additions and 7 deletions

View File

@ -0,0 +1,11 @@
package com.plannaplan.repositories;
import com.plannaplan.entities.Commision;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface CommisionRepository extends JpaRepository<Commision, Long> {
}