Переименование папки.
This commit is contained in:
parent
b4574b49d9
commit
fd9b52de8a
Binary file not shown.
@ -1,4 +1,4 @@
|
|||||||
package com.example.lab.DataBaseLab3.Models;
|
package com.example.lab.DataBase.Models;
|
||||||
|
|
||||||
import jakarta.persistence.*;
|
import jakarta.persistence.*;
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
package com.example.lab.DataBaseLab3.Models;
|
package com.example.lab.DataBase.Models;
|
||||||
import jakarta.persistence.*;
|
import jakarta.persistence.*;
|
||||||
|
|
||||||
import java.util.*;
|
import java.util.*;
|
@ -1,4 +1,4 @@
|
|||||||
package com.example.lab.DataBaseLab3.Models;
|
package com.example.lab.DataBase.Models;
|
||||||
|
|
||||||
import jakarta.persistence.*;
|
import jakarta.persistence.*;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
@ -1,4 +1,4 @@
|
|||||||
package com.example.lab.DataBaseLab3.Models;
|
package com.example.lab.DataBase.Models;
|
||||||
|
|
||||||
import jakarta.persistence.*;
|
import jakarta.persistence.*;
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
package com.example.lab.DataBaseLab3.Models;
|
package com.example.lab.DataBase.Models;
|
||||||
|
|
||||||
import jakarta.persistence.*;
|
import jakarta.persistence.*;
|
||||||
import java.util.*;
|
import java.util.*;
|
@ -1,12 +1,11 @@
|
|||||||
package com.example.lab.DataBaseLab3.Services;
|
package com.example.lab.DataBase.Services;
|
||||||
|
|
||||||
import com.example.lab.DataBaseLab3.Models.Customer;
|
import com.example.lab.DataBase.Models.Customer;
|
||||||
import com.example.lab.DataBaseLab3.Models.Product;
|
import com.example.lab.DataBase.Models.Product;
|
||||||
import com.example.lab.DataBaseLab3.Models.CountProduct;
|
|
||||||
import jakarta.persistence.*;
|
import jakarta.persistence.*;
|
||||||
import jakarta.transaction.Transactional;
|
import jakarta.transaction.Transactional;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import com.example.lab.DataBaseLab3.Models.Cart;
|
import com.example.lab.DataBase.Models.Cart;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@Service
|
@Service
|
@ -1,10 +1,10 @@
|
|||||||
package com.example.lab.DataBaseLab3.Services;
|
package com.example.lab.DataBase.Services;
|
||||||
|
|
||||||
import com.example.lab.DataBaseLab3.Models.*;
|
import com.example.lab.DataBase.Models.*;
|
||||||
import jakarta.persistence.*;
|
import jakarta.persistence.*;
|
||||||
import jakarta.transaction.Transactional;
|
import jakarta.transaction.Transactional;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import com.example.lab.DataBaseLab3.Models.Product;
|
import com.example.lab.DataBase.Models.Product;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
@ -1,9 +1,9 @@
|
|||||||
package com.example.lab.DataBaseLab3.Services;
|
package com.example.lab.DataBase.Services;
|
||||||
import jakarta.persistence.*;
|
import jakarta.persistence.*;
|
||||||
import jakarta.transaction.Transactional;
|
import jakarta.transaction.Transactional;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import org.springframework.util.StringUtils;
|
import org.springframework.util.StringUtils;
|
||||||
import com.example.lab.DataBaseLab3.Models.Customer;
|
import com.example.lab.DataBase.Models.Customer;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@Service
|
@Service
|
@ -1,10 +1,10 @@
|
|||||||
package com.example.lab.DataBaseLab3.Services;
|
package com.example.lab.DataBase.Services;
|
||||||
|
|
||||||
import jakarta.persistence.*;
|
import jakarta.persistence.*;
|
||||||
import jakarta.transaction.Transactional;
|
import jakarta.transaction.Transactional;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import org.springframework.util.StringUtils;
|
import org.springframework.util.StringUtils;
|
||||||
import com.example.lab.DataBaseLab3.Models.ProductCategory;
|
import com.example.lab.DataBase.Models.ProductCategory;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@Service
|
@Service
|
@ -1,11 +1,11 @@
|
|||||||
package com.example.lab.DataBaseLab3.Services;
|
package com.example.lab.DataBase.Services;
|
||||||
|
|
||||||
import com.example.lab.DataBaseLab3.Models.ProductCategory;
|
import com.example.lab.DataBase.Models.ProductCategory;
|
||||||
import jakarta.persistence.*;
|
import jakarta.persistence.*;
|
||||||
import jakarta.transaction.Transactional;
|
import jakarta.transaction.Transactional;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import org.springframework.util.StringUtils;
|
import org.springframework.util.StringUtils;
|
||||||
import com.example.lab.DataBaseLab3.Models.Product;
|
import com.example.lab.DataBase.Models.Product;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@Service
|
@Service
|
@ -1,11 +1,11 @@
|
|||||||
package com.example.lab;
|
package com.example.lab;
|
||||||
|
|
||||||
import com.example.lab.DataBaseLab3.Models.*;
|
import com.example.lab.DataBase.Models.*;
|
||||||
import com.example.lab.DataBaseLab3.Services.CartService;
|
import com.example.lab.DataBase.Services.CartService;
|
||||||
import com.example.lab.DataBaseLab3.Services.CustomerService;
|
import com.example.lab.DataBase.Services.CustomerService;
|
||||||
import com.example.lab.DataBaseLab3.Services.ProductCategoryService;
|
import com.example.lab.DataBase.Services.ProductCategoryService;
|
||||||
import com.example.lab.DataBaseLab3.Services.ProductService;
|
import com.example.lab.DataBase.Services.ProductService;
|
||||||
import com.example.lab.DataBaseLab3.Services.CountProductService;
|
import com.example.lab.DataBase.Services.CountProductService;
|
||||||
import org.junit.jupiter.api.Assertions;
|
import org.junit.jupiter.api.Assertions;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
Loading…
Reference in New Issue
Block a user