2024-10-28 01:37:59 +04:00

19 lines
444 B
C#

using ProjectHotel.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectHotel.Repositories;
public interface IPlacingRepository
{
IEnumerable<PlacingAthlete> ReadPlacing();
PlacingAthlete ReadPlacingById(int id);
void CreateHotel(PlacingAthlete placing);
void UpdateHotel(PlacingAthlete placing);
void DeletePlacing(int id);
}
}