2023-04-07 02:20:02 +04:00
|
|
|
|
using HotelContracts.BindingModels;
|
|
|
|
|
using HotelContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace HotelContracts.BusinessLogicsContracts;
|
|
|
|
|
|
|
|
|
|
public interface IReportLogic
|
|
|
|
|
{
|
2023-05-19 20:55:43 +04:00
|
|
|
|
List<ReportListCleaningModel> GetListCleaning(List<int> reservationsId);
|
2023-04-07 02:20:02 +04:00
|
|
|
|
List<ReportGuestViewModel> GetGuests(ReportBindingModel model);
|
|
|
|
|
void SaveListCleaningToWordFile(ReportBindingModel model);
|
|
|
|
|
void SaveListCleaningToExcelFile(ReportBindingModel model);
|
|
|
|
|
void SaveGuestsToPdfFile(ReportBindingModel model);
|
|
|
|
|
}
|