示例#1
0
        public void AcceptChore(Chore chore)
        {
            Chore c = _repo.AcceptChore(chore);

            Clients.Others.SendAsync("SomeoneAcceptedChore", c);
            Clients.Caller.SendAsync("IAcceptedChore", c);
        }