/// <exception cref="Domain.Contract.Exceptions.CommunityNotFoundException" /> /// <exception cref="Domain.Contract.Exceptions.MeetupNotFoundException" /> public MeetupDraft GetEntity(MeetupKey id) { throw new NotImplementedException(); }
/// <exception cref="Domain.Contract.Exceptions.CommunityNotFoundException" /> /// <exception cref="Domain.Contract.Exceptions.MeetupNotFoundException" /> public void Delete(MeetupKey id) { throw new NotImplementedException(); }
public MeetupDraft(MeetupKey key) { Key = key ?? throw new ArgumentNullException(nameof(key)); Talks = new List <TalkDraft>(); Friends = new List <FriendReference>(); }