Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

IRoomRepository.cs 459B

12345678910111213
  1. using Diligent.WebAPI.Data.Entities;
  2. using Diligent.WebAPI.Data.HelperModels;
  3. namespace Diligent.WebAPI.Business.Interfaces
  4. {
  5. public interface IRoomRepository : IBaseRepository<Room>
  6. {
  7. Task AddCustomerToRoom(Room room, string customerId);
  8. Task AddMessage(Room room, Message message);
  9. Task LeaveChatRoom(Room room, CustomerDTO userConnection);
  10. Task<List<Room>> GetRoomsWhichSupportCreated(string supportId);
  11. }
  12. }