модельки
This commit is contained in:
parent
15a11244a2
commit
99cb8dc1c6
52
SPiluSZharu/SPiluSZharu/DataModels/PostDataModel.cs
Normal file
52
SPiluSZharu/SPiluSZharu/DataModels/PostDataModel.cs
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
using SPiluSZharuContracts.Enums;
|
||||||
|
using SPiluSZharuContracts.Exceptions;
|
||||||
|
using SPiluSZharuContracts.Extensions;
|
||||||
|
using SPiluSZharuContracts.Infrastructure;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace SPiluSZharuContracts.DataModels;
|
||||||
|
|
||||||
|
public class PostDataModel(string id, string postId, string postName, PostType postType, double salary, bool isActual, DateTime changeDate) : IValidation
|
||||||
|
{
|
||||||
|
public string Id { get; private set; } = id;
|
||||||
|
|
||||||
|
public string PostId { get; private set; } = postId;
|
||||||
|
|
||||||
|
public string PostName { get; private set; } = postName;
|
||||||
|
|
||||||
|
public PostType PostType { get; private set; } = postType;
|
||||||
|
|
||||||
|
public double Salary { get; private set; } = salary;
|
||||||
|
|
||||||
|
public bool IsActual { get; private set; } = isActual;
|
||||||
|
|
||||||
|
public DateTime ChangeDate { get; private set; } = changeDate;
|
||||||
|
|
||||||
|
public void Validate()
|
||||||
|
{
|
||||||
|
if (Id.IsEmpty())
|
||||||
|
throw new ValidationException("Field Id is empty");
|
||||||
|
|
||||||
|
if (!Id.IsGuid())
|
||||||
|
throw new ValidationException("The value in the field Id is not a unique identifier");
|
||||||
|
|
||||||
|
if (PostId.IsEmpty())
|
||||||
|
throw new ValidationException("Field PostId is empty");
|
||||||
|
|
||||||
|
if (!PostId.IsGuid())
|
||||||
|
throw new ValidationException("The value in the field PostId is not a unique identifier");
|
||||||
|
|
||||||
|
if (PostName.IsEmpty())
|
||||||
|
throw new ValidationException("Field PostName is empty");
|
||||||
|
|
||||||
|
if (PostType == PostType.None)
|
||||||
|
throw new ValidationException("Field PostType is empty");
|
||||||
|
|
||||||
|
if (Salary <= 0)
|
||||||
|
throw new ValidationException("Field Salary is empty");
|
||||||
|
}
|
||||||
|
}
|
39
SPiluSZharu/SPiluSZharu/DataModels/ProductDataModel.cs
Normal file
39
SPiluSZharu/SPiluSZharu/DataModels/ProductDataModel.cs
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
using SPiluSZharuContracts.Enums;
|
||||||
|
using SPiluSZharuContracts.Exceptions;
|
||||||
|
using SPiluSZharuContracts.Extensions;
|
||||||
|
using SPiluSZharuContracts.Infrastructure;
|
||||||
|
|
||||||
|
|
||||||
|
namespace SPiluSZharuContracts.DataModels;
|
||||||
|
|
||||||
|
public class ProductDataModel(string id, string productName, ProductType productType, double price, bool isDeleted) : IValidation
|
||||||
|
{
|
||||||
|
public string Id { get; private set; } = id;
|
||||||
|
|
||||||
|
public string ProductName { get; private set; } = productName;
|
||||||
|
|
||||||
|
public ProductType ProductType { get; private set; } = productType;
|
||||||
|
|
||||||
|
public double Price { get; private set; } = price;
|
||||||
|
|
||||||
|
public bool IsDeleted { get; private set; } = isDeleted;
|
||||||
|
|
||||||
|
public void Validate()
|
||||||
|
{
|
||||||
|
if (Id.IsEmpty())
|
||||||
|
throw new ValidationException("Field Id is empty");
|
||||||
|
|
||||||
|
if (!Id.IsGuid())
|
||||||
|
throw new ValidationException("The value in the field Id is not a unique identifier");
|
||||||
|
|
||||||
|
if (ProductName.IsEmpty())
|
||||||
|
throw new ValidationException("Field ProductName is empty");
|
||||||
|
|
||||||
|
if (ProductType == ProductType.None)
|
||||||
|
throw new ValidationException("Field ProductType is empty");
|
||||||
|
|
||||||
|
if (Price <= 0)
|
||||||
|
throw new ValidationException("Field Price is less than or equal to 0");
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
using SPiluSZharuContracts.Exceptions;
|
||||||
|
using SPiluSZharuContracts.Extensions;
|
||||||
|
using SPiluSZharuContracts.Infrastructure;
|
||||||
|
|
||||||
|
|
||||||
|
namespace SPiluSZharuContracts.DataModels;
|
||||||
|
|
||||||
|
public class ProductHistoryDataModel(string productId, double oldPrice) : IValidation
|
||||||
|
{
|
||||||
|
public string ProductId { get; private set; } = productId;
|
||||||
|
|
||||||
|
public double OldPrice { get; private set; } = oldPrice;
|
||||||
|
|
||||||
|
public DateTime ChangeDate { get; private set; } = DateTime.UtcNow;
|
||||||
|
|
||||||
|
public void Validate()
|
||||||
|
{
|
||||||
|
if (ProductId.IsEmpty())
|
||||||
|
throw new ValidationException("Field ProductId is empty");
|
||||||
|
|
||||||
|
if (!ProductId.IsGuid())
|
||||||
|
throw new ValidationException("The value in the field ProductId is not a unique identifier");
|
||||||
|
|
||||||
|
if (OldPrice <= 0)
|
||||||
|
throw new ValidationException("Field OldPrice is less than or equal to 0");
|
||||||
|
}
|
||||||
|
}
|
27
SPiluSZharu/SPiluSZharu/DataModels/RestaurantDataModel.cs
Normal file
27
SPiluSZharu/SPiluSZharu/DataModels/RestaurantDataModel.cs
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
using SPiluSZharuContracts.Exceptions;
|
||||||
|
using SPiluSZharuContracts.Extensions;
|
||||||
|
using SPiluSZharuContracts.Infrastructure;
|
||||||
|
|
||||||
|
|
||||||
|
namespace SPiluSZharuContracts.DataModels;
|
||||||
|
|
||||||
|
public class RestaurantDataModel(string id, string restaurantName, string prevRestaurantName, string prevPrevRestaurantName) : IValidation
|
||||||
|
{
|
||||||
|
public string Id { get; private set; } = id;
|
||||||
|
|
||||||
|
public string RestaurantName { get; private set; } = restaurantName;
|
||||||
|
|
||||||
|
public string PrevRestaurantName { get; private set; } = prevRestaurantName;
|
||||||
|
|
||||||
|
public string PrevPrevRestaurantName { get; private set; } = prevPrevRestaurantName;
|
||||||
|
|
||||||
|
public void Validate()
|
||||||
|
{
|
||||||
|
if (Id.IsEmpty())
|
||||||
|
throw new ValidationException("Field Id is empty");
|
||||||
|
if (!Id.IsGuid())
|
||||||
|
throw new ValidationException("Field Id is not a unique identifier");
|
||||||
|
if (RestaurantName.IsEmpty())
|
||||||
|
throw new ValidationException("Field RestaurantName is empty");
|
||||||
|
}
|
||||||
|
}
|
51
SPiluSZharu/SPiluSZharu/DataModels/SaleDataModel.cs
Normal file
51
SPiluSZharu/SPiluSZharu/DataModels/SaleDataModel.cs
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
using SPiluSZharuContracts.Exceptions;
|
||||||
|
using SPiluSZharuContracts.Extensions;
|
||||||
|
using SPiluSZharuContracts.Infrastructure;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace SPiluSZharuContracts.DataModels;
|
||||||
|
|
||||||
|
public class SaleDataModel(string id, string workerId, string? restaurantId, double sum, bool isCancel, List<SaleProductDataModel> products) : IValidation
|
||||||
|
{
|
||||||
|
public string Id { get; private set; } = id;
|
||||||
|
|
||||||
|
public string WorkerId { get; private set; } = workerId;
|
||||||
|
|
||||||
|
public string? RestaurantId { get; private set; } = restaurantId;
|
||||||
|
|
||||||
|
public DateTime SaleDate { get; private set; } = DateTime.UtcNow;
|
||||||
|
|
||||||
|
public double Sum { get; private set; } = sum;
|
||||||
|
|
||||||
|
public bool IsCancel { get; private set; } = isCancel;
|
||||||
|
|
||||||
|
public List<SaleProductDataModel> Products { get; private set; } = products;
|
||||||
|
|
||||||
|
public void Validate()
|
||||||
|
{
|
||||||
|
if (Id.IsEmpty())
|
||||||
|
throw new ValidationException("Field Id is empty");
|
||||||
|
|
||||||
|
if (!Id.IsGuid())
|
||||||
|
throw new ValidationException("The value in the field Id is not a unique identifier");
|
||||||
|
|
||||||
|
if (WorkerId.IsEmpty())
|
||||||
|
throw new ValidationException("Field WorkerId is empty");
|
||||||
|
|
||||||
|
if (!WorkerId.IsGuid())
|
||||||
|
throw new ValidationException("The value in the field WorkerId is not a unique identifier");
|
||||||
|
|
||||||
|
if (!RestaurantId?.IsGuid() ?? !RestaurantId?.IsEmpty() ?? false)
|
||||||
|
throw new ValidationException("The value in the field RestaurantId is not a unique identifier");
|
||||||
|
|
||||||
|
if (Sum <= 0)
|
||||||
|
throw new ValidationException("Field Sum is less than or equal to 0");
|
||||||
|
|
||||||
|
if ((Products?.Count ?? 0) == 0)
|
||||||
|
throw new ValidationException("The sale must include products");
|
||||||
|
}
|
||||||
|
}
|
37
SPiluSZharu/SPiluSZharu/DataModels/SaleProductDataModel.cs
Normal file
37
SPiluSZharu/SPiluSZharu/DataModels/SaleProductDataModel.cs
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
using SPiluSZharuContracts.Exceptions;
|
||||||
|
using SPiluSZharuContracts.Extensions;
|
||||||
|
using SPiluSZharuContracts.Infrastructure;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace SPiluSZharuContracts.DataModels;
|
||||||
|
|
||||||
|
public class SaleProductDataModel(string saleId, string productId, int count) : IValidation
|
||||||
|
{
|
||||||
|
public string SaleId { get; private set; } = saleId;
|
||||||
|
|
||||||
|
public string ProductId { get; private set; } = productId;
|
||||||
|
|
||||||
|
public int Count { get; private set; } = count;
|
||||||
|
|
||||||
|
public void Validate()
|
||||||
|
{
|
||||||
|
if (SaleId.IsEmpty())
|
||||||
|
throw new ValidationException("Field SaleId is empty");
|
||||||
|
|
||||||
|
if (!SaleId.IsGuid())
|
||||||
|
throw new ValidationException("The value in the field SaleId is not a unique identifier");
|
||||||
|
|
||||||
|
if (ProductId.IsEmpty())
|
||||||
|
throw new ValidationException("Field ProductId is empty");
|
||||||
|
|
||||||
|
if (!ProductId.IsGuid())
|
||||||
|
throw new ValidationException("The value in the field ProductId is not a unique identifier");
|
||||||
|
|
||||||
|
if (Count <= 0)
|
||||||
|
throw new ValidationException("Field Count is less than or equal to 0");
|
||||||
|
}
|
||||||
|
}
|
52
SPiluSZharu/SPiluSZharu/DataModels/WorkerDataModel.cs
Normal file
52
SPiluSZharu/SPiluSZharu/DataModels/WorkerDataModel.cs
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
using SPiluSZharuContracts.Exceptions;
|
||||||
|
using SPiluSZharuContracts.Extensions;
|
||||||
|
using SPiluSZharuContracts.Infrastructure;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace SPiluSZharuContracts.DataModels;
|
||||||
|
|
||||||
|
public class WorkerDataModel(string id, string fio, string postId, DateTime birthDate, DateTime employmentDate, bool isDeleted) : IValidation
|
||||||
|
{
|
||||||
|
public string Id { get; private set; } = id;
|
||||||
|
|
||||||
|
public string FIO { get; private set; } = fio;
|
||||||
|
|
||||||
|
public string PostId { get; private set; } = postId;
|
||||||
|
|
||||||
|
public DateTime BirthDate { get; private set; } = birthDate;
|
||||||
|
|
||||||
|
public DateTime EmploymentDate { get; private set; } = employmentDate;
|
||||||
|
|
||||||
|
public bool IsDeleted { get; private set; } = isDeleted;
|
||||||
|
|
||||||
|
public void Validate()
|
||||||
|
{
|
||||||
|
if (Id.IsEmpty())
|
||||||
|
throw new ValidationException("Field Id is empty");
|
||||||
|
|
||||||
|
if (!Id.IsGuid())
|
||||||
|
throw new ValidationException("The value in the field Id is not a unique identifier");
|
||||||
|
|
||||||
|
if (FIO.IsEmpty())
|
||||||
|
throw new ValidationException("Field FIO is empty");
|
||||||
|
|
||||||
|
if (PostId.IsEmpty())
|
||||||
|
throw new ValidationException("Field PostId is empty");
|
||||||
|
|
||||||
|
if (!PostId.IsGuid())
|
||||||
|
throw new ValidationException("The value in the field PostId is not a unique identifier");
|
||||||
|
|
||||||
|
if (BirthDate.Date > DateTime.Now.AddYears(-16).Date)
|
||||||
|
throw new ValidationException($"Minors cannot be hired (BirthDate = {BirthDate.ToShortDateString()})");
|
||||||
|
|
||||||
|
if (EmploymentDate.Date < BirthDate.Date)
|
||||||
|
throw new ValidationException("The date of employment cannot be less than the date of birth");
|
||||||
|
|
||||||
|
if ((EmploymentDate - BirthDate).TotalDays / 365 < 16) // EmploymentDate.Year - BirthDate.Year
|
||||||
|
throw new ValidationException($"Minors cannot be hired (EmploymentDate - {EmploymentDate.ToShortDateString()}, BirthDate - {BirthDate.ToShortDateString()})");
|
||||||
|
}
|
||||||
|
}
|
15
SPiluSZharu/SPiluSZharu/Enums/PostType.cs
Normal file
15
SPiluSZharu/SPiluSZharu/Enums/PostType.cs
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace SPiluSZharuContracts.Enums;
|
||||||
|
|
||||||
|
public enum PostType
|
||||||
|
{
|
||||||
|
None = 0,
|
||||||
|
Operator = 1,
|
||||||
|
Aggreagator = 2,
|
||||||
|
DeliveryMan = 3
|
||||||
|
}
|
15
SPiluSZharu/SPiluSZharu/Enums/ProductType.cs
Normal file
15
SPiluSZharu/SPiluSZharu/Enums/ProductType.cs
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace SPiluSZharuContracts.Enums;
|
||||||
|
|
||||||
|
public enum ProductType
|
||||||
|
{
|
||||||
|
None = 0,
|
||||||
|
Pizza = 1,
|
||||||
|
Burgers = 2,
|
||||||
|
Drinks = 3
|
||||||
|
}
|
@ -0,0 +1,4 @@
|
|||||||
|
namespace SPiluSZharuContracts.Exceptions;
|
||||||
|
public class ValidationException(string message) : Exception(message)
|
||||||
|
{
|
||||||
|
}
|
20
SPiluSZharu/SPiluSZharu/Extensions/StringExtensions.cs
Normal file
20
SPiluSZharu/SPiluSZharu/Extensions/StringExtensions.cs
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace SPiluSZharuContracts.Extensions;
|
||||||
|
|
||||||
|
public static class StringExtensions
|
||||||
|
{
|
||||||
|
public static bool IsEmpty(this string str)
|
||||||
|
{
|
||||||
|
return string.IsNullOrWhiteSpace(str);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static bool IsGuid(this string str)
|
||||||
|
{
|
||||||
|
return Guid.TryParse(str, out _);
|
||||||
|
}
|
||||||
|
}
|
12
SPiluSZharu/SPiluSZharu/Infrastructure/IValidation.cs
Normal file
12
SPiluSZharu/SPiluSZharu/Infrastructure/IValidation.cs
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace SPiluSZharuContracts.Infrastructure;
|
||||||
|
|
||||||
|
public interface IValidation
|
||||||
|
{
|
||||||
|
void Validate();
|
||||||
|
}
|
9
SPiluSZharu/SPiluSZharu/SPiluSZharuContracts.csproj
Normal file
9
SPiluSZharu/SPiluSZharu/SPiluSZharuContracts.csproj
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
25
SPiluSZharu/SPiluSZharuProject.sln
Normal file
25
SPiluSZharu/SPiluSZharuProject.sln
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 17
|
||||||
|
VisualStudioVersion = 17.10.35013.160
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SPiluSZharuContracts", "SPiluSZharu\SPiluSZharuContracts.csproj", "{80D721F8-2CC5-422B-A06B-42A00984BDD5}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{80D721F8-2CC5-422B-A06B-42A00984BDD5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{80D721F8-2CC5-422B-A06B-42A00984BDD5}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{80D721F8-2CC5-422B-A06B-42A00984BDD5}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{80D721F8-2CC5-422B-A06B-42A00984BDD5}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
SolutionGuid = {9B711281-34A4-4ACE-8CA0-636574EA0BF2}
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
Loading…
x
Reference in New Issue
Block a user