18 lines
384 B
C#
18 lines
384 B
C#
|
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
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|