using System.Collections.Generic; namespace BathHouseManagmet.Models.Interfaces; public interface IRepository where T : class { List GetPage(int pageNumber, int pageSize); bool Add(T entity); bool Update(T entity); bool Delete(T entity); }