add database models, data transfer objects and mapper profiles

This commit is contained in:
cuqmbr 2023-10-08 20:20:13 +03:00
parent 36d7193e15
commit 8b78292ce7
Signed by: cuqmbr
GPG Key ID: 2D72ED98B6CB200F
10 changed files with 104 additions and 0 deletions

View File

@ -0,0 +1,15 @@
using AutoMapper;
using ShoppingAssistantApi.Application.Models.CreateDtos;
using ShoppingAssistantApi.Application.Models.Dtos;
using ShoppingAssistantApi.Domain.Entities;
namespace ShoppingAssistantApi.Application.MappingProfiles;
public class MessageProfile : Profile
{
public MessageProfile()
{
CreateMap<Message, MessageDto>().ReverseMap();
CreateMap<MessageCreateDto, Message>().ReverseMap();
}
}

View File

@ -0,0 +1,15 @@
using AutoMapper;
using ShoppingAssistantApi.Application.Models.CreateDtos;
using ShoppingAssistantApi.Application.Models.Dtos;
using ShoppingAssistantApi.Domain.Entities;
namespace ShoppingAssistantApi.Application.MappingProfiles;
public class WishlistProfile : Profile
{
public WishlistProfile()
{
CreateMap<Wishlist, WishlistDto>().ReverseMap();
CreateMap<WishlistCreateDto, Wishlist>().ReverseMap();
}
}

View File

@ -0,0 +1,6 @@
namespace ShoppingAssistantApi.Application.Models.CreateDtos;
public class MessageCreateDto
{
public required string Text { get; set; }
}

View File

@ -0,0 +1,7 @@
namespace ShoppingAssistantApi.Application.Models.CreateDtos;
public class WishlistCreateDto
{
public required string Type { get; set; }
public required string FirstMessageText { get; set; }
}

View File

@ -0,0 +1,11 @@
namespace ShoppingAssistantApi.Application.Models.Dtos;
public class MessageDto
{
public required string Id { get; set; }
public required string Text { get; set; }
public required string Role { get; set; }
public string? CreatedById { get; set; } = null;
}

View File

@ -0,0 +1,11 @@
namespace ShoppingAssistantApi.Application.Models.Dtos;
public class WishlistDto
{
public required string Id { get; set; }
public required string Name { get; set; }
public required string Type { get; set; }
public string CreatedById { get; set; } = null!;
}

View File

@ -0,0 +1,12 @@
using MongoDB.Bson;
using ShoppingAssistantApi.Domain.Common;
namespace ShoppingAssistantApi.Domain.Entities;
public class Message : EntityBase
{
public required string Text { get; set; }
public required string Role { get; set; }
public ObjectId? WishlistId { get; set; } = null;
}

View File

@ -0,0 +1,13 @@
using MongoDB.Bson;
using ShoppingAssistantApi.Domain.Common;
namespace ShoppingAssistantApi.Domain.Entities;
public class Wishlist : EntityBase
{
public required string Name { get; set; }
public required string Type { get; set; }
public ICollection<Message>? Messages { get; set; } = null;
public required ObjectId UserId { get; set; }
}

View File

@ -0,0 +1,7 @@
namespace ShoppingAssistantApi.Domain.Enums;
public enum MessageRoles
{
User = 0,
Application = 0
}

View File

@ -0,0 +1,7 @@
namespace ShoppingAssistantApi.Domain.Enums;
public enum WishlistTypes
{
Product = 0,
Gift = 1
}