| 12345678910111213 |
- using Diligent.WebAPI.Data.Entities;
- using Diligent.WebAPI.Data.HelperModels;
-
- namespace Diligent.WebAPI.Business.Interfaces
- {
- public interface IRoomRepository : IBaseRepository<Room>
- {
- Task AddCustomerToRoom(Room room, string customerId);
- Task AddMessage(Room room, Message message);
- Task LeaveChatRoom(Room room, CustomerDTO userConnection);
- Task<List<Room>> GetRoomsWhichSupportCreated(string supportId);
- }
- }
|