мелкие исправления

This commit is contained in:
2025-04-20 11:49:18 +04:00
parent 741fccb38a
commit a0e1b0d14d
2 changed files with 4 additions and 2 deletions

View File

@@ -1,4 +1,6 @@
using System;
using AutoMapper;
using MagicCarpetContracts.DataModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
@@ -6,6 +8,7 @@ using System.Threading.Tasks;
namespace MagicCarpetDatabase.Models;
[AutoMap(typeof(TourAgencyDataModel), ReverseMap = true)]
public class TourAgency
{
public required string AgencyId { get; set; }

View File

@@ -23,7 +23,6 @@ internal class SuppliesAdapterTests
private Mock<ISuppliesBusinessLogicContract> _suppliesBusinessLogicContract;
private SuppliesAdapter _adapter;
private Mock<ILogger<SuppliesAdapter>> _logger;
private IMapper? _mapper;
[OneTimeSetUp]
public void OneTimeSetUp()