Exemplo n.º 1
0
        public dynamic GetAllParties()
        {
            PartyRepository repo        = new PartyRepository();
            var             listParties = repo.GetAllParties();

            return(listParties);
        }
Exemplo n.º 2
0
 // GET: api/Parties
 public ICollection <Party> GetParties()
 {
     return(_partyRepository.GetAllParties());
 }
Exemplo n.º 3
0
 public List <Party> GetFirst10Parties()
 {
     return(PartyRepository.GetAllParties().OrderByDescending(x => x.Date).Take(10).ToList());
 }
Exemplo n.º 4
0
 public List <Party> GetIncomingParties()
 {
     return(PartyRepository.GetAllParties());
 }
Exemplo n.º 5
0
 public List <PartyTable> GetAllParties(long ownerId) => _pr.GetAllParties(ownerId);
Exemplo n.º 6
0
 public List <Party> GetAllParties()
 {
     return(partyrepo.GetAllParties());
 }