45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
using Microsoft.Extensions.Logging;
|
|
using TheCyclopsContracts.BusinessLogicContracts;
|
|
using TheCyclopsContracts.DataModels;
|
|
using TheCyclopsContracts.Enums;
|
|
using TheCyclopsContracts.StoragesContracts;
|
|
|
|
namespace TheCyclopsBusinessLogic.Implementations;
|
|
|
|
internal class PostBusinessLogicContract(IPostStorageContract postStorageContract, ILogger logger) : IPostBusinessLogicContract
|
|
{
|
|
private readonly ILogger _logger = logger;
|
|
private readonly IPostStorageContract _postStorageContract = postStorageContract;
|
|
|
|
public List<PostDataModel> GetAllPosts(bool onlyActive)
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public List<PostDataModel> GetAllDataOfPost(string postId)
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public PostDataModel GetPostByData(string data)
|
|
{
|
|
return new PostDataModel("", "", PostType.None, 0, false, DateTime.Now);
|
|
}
|
|
|
|
public void InsertPost(PostDataModel postDataModel)
|
|
{
|
|
}
|
|
|
|
public void UpdatePost(PostDataModel postDataModel)
|
|
{
|
|
}
|
|
|
|
public void DeletePost(string id)
|
|
{
|
|
}
|
|
|
|
public void RestorePost(string id)
|
|
{
|
|
}
|
|
}
|