mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 00:36:39 +00:00
13 lines
No EOL
350 B
C#
13 lines
No EOL
350 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using TicketManager.Models;
|
|
|
|
namespace TicketManager.Data
|
|
{
|
|
public interface IProjectRepository : IGenericRepository<Project>
|
|
{
|
|
bool Exists(int id);
|
|
Task<IEnumerable<AppUser>> GetMembers(int id);
|
|
Task SetMembers(int id, List<AppUser> usersToAdd);
|
|
}
|
|
} |