18 lines
384 B
C#
Raw Normal View History

using HotelContracts.SearchModels;
using HotelContracts.StoragesContracts;
using HotelContracts.ViewModels;
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HotelDatabaseImplement.Implements
{
public class BookingStorage : IBookingStorage
{
}
}