using Microsoft.Extensions.Logging; using Squirrel.BusinessLogicsContracts; using Squirrel.DataModels; using Squirrel.Enums; using Squirrel.StoragesContracts; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SquirelBusinessLogic.Implementations; internal class PostBusinessLogicContract(IPostStorageContract postStorageContract, ILogger logger) : IPostBusinessLogicContract { private readonly ILogger _logger = logger; private readonly IPostStorageContract _postStorageContract = postStorageContract; public List GetAllPosts(bool onlyActive = true) { return []; } public List GetAllDataOfPost(string postId) { return []; } public PostDataModel GetPostByData(string data) { return new("", "", PostType.None, 0, true, DateTime.UtcNow); } public void InsertPost(PostDataModel postDataModel) { } public void UpdatePost(PostDataModel postDataModel) { } public void DeletePost(string id) { } public void RestorePost(string id) { } }