Cleanup folder structure again
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
namespace Imprink.Domain.Entities.Users;
|
||||
namespace Imprink.Domain.Entities;
|
||||
|
||||
public class Address : EntityBase
|
||||
{
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace Imprink.Domain.Entities.Products;
|
||||
namespace Imprink.Domain.Entities;
|
||||
|
||||
public class Category : EntityBase
|
||||
{
|
||||
@@ -1,6 +1,4 @@
|
||||
using Imprink.Domain.Entities.Users;
|
||||
|
||||
namespace Imprink.Domain.Entities.Orders;
|
||||
namespace Imprink.Domain.Entities;
|
||||
|
||||
public class Order : EntityBase
|
||||
{
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace Imprink.Domain.Entities.Orders;
|
||||
namespace Imprink.Domain.Entities;
|
||||
|
||||
public class OrderAddress : EntityBase
|
||||
{
|
||||
@@ -1,6 +1,4 @@
|
||||
using Imprink.Domain.Entities.Products;
|
||||
|
||||
namespace Imprink.Domain.Entities.Orders;
|
||||
namespace Imprink.Domain.Entities;
|
||||
|
||||
public class OrderItem : EntityBase
|
||||
{
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace Imprink.Domain.Entities.Orders;
|
||||
namespace Imprink.Domain.Entities;
|
||||
|
||||
public class OrderStatus
|
||||
{
|
||||
@@ -1,6 +1,4 @@
|
||||
using Imprink.Domain.Entities.Orders;
|
||||
|
||||
namespace Imprink.Domain.Entities.Products;
|
||||
namespace Imprink.Domain.Entities;
|
||||
|
||||
public class Product : EntityBase
|
||||
{
|
||||
@@ -1,6 +1,4 @@
|
||||
using Imprink.Domain.Entities.Orders;
|
||||
|
||||
namespace Imprink.Domain.Entities.Products;
|
||||
namespace Imprink.Domain.Entities;
|
||||
|
||||
public class ProductVariant : EntityBase
|
||||
{
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace Imprink.Domain.Entities.Users;
|
||||
namespace Imprink.Domain.Entities;
|
||||
|
||||
public class Role
|
||||
{
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace Imprink.Domain.Entities.Orders;
|
||||
namespace Imprink.Domain.Entities;
|
||||
|
||||
public class ShippingStatus
|
||||
{
|
||||
@@ -1,6 +1,4 @@
|
||||
using Imprink.Domain.Entities.Orders;
|
||||
|
||||
namespace Imprink.Domain.Entities.Users;
|
||||
namespace Imprink.Domain.Entities;
|
||||
|
||||
public class User
|
||||
{
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace Imprink.Domain.Entities.Users;
|
||||
namespace Imprink.Domain.Entities;
|
||||
|
||||
public class UserRole
|
||||
{
|
||||
6
src/Imprink.Domain/Models/BaseFilterParameters.cs
Normal file
6
src/Imprink.Domain/Models/BaseFilterParameters.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace Imprink.Domain.Models;
|
||||
|
||||
public class BaseFilterParameters
|
||||
{
|
||||
// ToDo
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
using Imprink.Domain.Entities.Products;
|
||||
using Imprink.Domain.Entities;
|
||||
|
||||
namespace Imprink.Domain.Repositories.Products;
|
||||
namespace Imprink.Domain.Repositories;
|
||||
|
||||
public interface ICategoryRepository
|
||||
{
|
||||
@@ -1,6 +1,6 @@
|
||||
using Imprink.Domain.Entities.Orders;
|
||||
using Imprink.Domain.Entities;
|
||||
|
||||
namespace Imprink.Domain.Repositories.Orders;
|
||||
namespace Imprink.Domain.Repositories;
|
||||
|
||||
public interface IOrderItemRepository
|
||||
{
|
||||
@@ -1,7 +1,7 @@
|
||||
using Imprink.Domain.Entities.Orders;
|
||||
using Imprink.Domain.Entities;
|
||||
using Imprink.Domain.Models;
|
||||
|
||||
namespace Imprink.Domain.Repositories.Orders;
|
||||
namespace Imprink.Domain.Repositories;
|
||||
|
||||
public interface IOrderRepository
|
||||
{
|
||||
@@ -1,7 +1,7 @@
|
||||
using Imprink.Domain.Entities.Products;
|
||||
using Imprink.Domain.Entities;
|
||||
using Imprink.Domain.Models;
|
||||
|
||||
namespace Imprink.Domain.Repositories.Products;
|
||||
namespace Imprink.Domain.Repositories;
|
||||
|
||||
public interface IProductRepository
|
||||
{
|
||||
@@ -1,6 +1,6 @@
|
||||
using Imprink.Domain.Entities.Products;
|
||||
using Imprink.Domain.Entities;
|
||||
|
||||
namespace Imprink.Domain.Repositories.Products;
|
||||
namespace Imprink.Domain.Repositories;
|
||||
|
||||
public interface IProductVariantRepository
|
||||
{
|
||||
@@ -1,6 +1,6 @@
|
||||
using Imprink.Domain.Entities.Users;
|
||||
using Imprink.Domain.Entities;
|
||||
|
||||
namespace Imprink.Domain.Repositories.Users;
|
||||
namespace Imprink.Domain.Repositories;
|
||||
|
||||
public interface IRoleRepository
|
||||
{
|
||||
@@ -1,7 +1,7 @@
|
||||
using Imprink.Domain.Entities.Users;
|
||||
using Imprink.Domain.Entities;
|
||||
using Imprink.Domain.Models;
|
||||
|
||||
namespace Imprink.Domain.Repositories.Users;
|
||||
namespace Imprink.Domain.Repositories;
|
||||
|
||||
public interface IUserRepository
|
||||
{
|
||||
@@ -1,6 +1,6 @@
|
||||
using Imprink.Domain.Entities.Users;
|
||||
using Imprink.Domain.Entities;
|
||||
|
||||
namespace Imprink.Domain.Repositories.Users;
|
||||
namespace Imprink.Domain.Repositories;
|
||||
|
||||
public interface IUserRoleRepository
|
||||
{
|
||||
Reference in New Issue
Block a user