Exemplo n.º 1
0
        public List <BankAcount> GetAllData()
        {
            var theReturn = IApiRequestSend.GetAllData();

            if (theReturn == null || theReturn.Count == 0)
            {
                return(TheAcount);
            }
            else
            {
                return(theReturn);
            }
        }
Exemplo n.º 2
0
 public IEnumerable <Product> GetAllProducts()
 {
     return(_requests.GetAllData());
 }
Exemplo n.º 3
0
 public virtual IEnumerable <Journey> GetAllJourneys()
 {
     return(apiRequestSend.GetAllData());
 }
Exemplo n.º 4
0
 public IEnumerable <Item> GetAllData()
 {
     return(_request.GetAllData());
 }
Exemplo n.º 5
0
 public void GetAll() => apiRequestSend.GetAllData();
Exemplo n.º 6
0
 public virtual IEnumerable <Product> GetAllProducts()
 {
     return(requestSend.GetAllData());
 }