Files
WhiteLagoon/WhiteLagoon.Application/Common/Interfaces/IUnitOfWork.cs
T
2025-05-20 11:46:50 -04:00

19 lines
471 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WhiteLagoon.Application.Common.Interfaces
{
public interface IUnitOfWork
{
IVillaRepository Villa { get; }
IVillaNumberRepository VillaNumber { get; }
IBookingRepository Booking { get; }
IApplicationUserRepository User { get; }
IAmenityRepository Amenity { get; }
void Save();
}
}