Наследование ISaleStorage

This commit is contained in:
user
2025-03-17 02:39:08 +04:00
parent e54574147a
commit 94f2c60a08

View File

@@ -2,11 +2,12 @@
using Microsoft.EntityFrameworkCore;
using SquirrelContract.DataModels;
using SquirrelContract.Exceptions;
using SquirrelContract.StoragesContracts;
using SquirrelDatabase.Models;
namespace SquirrelDatabase.Implementations;
public class SaleStorageContract
public class SaleStorageContract : ISaleStorageContract
{
private readonly SquirrelDbContext _dbContext;
private readonly Mapper _mapper;