Exemplo n.º 1
0
        public async Task <IEnumerable <Project> > Get()
        {
            var projects = await _repository.Get();

            return(projects);
        }
Exemplo n.º 2
0
        public async Task <IEnumerable <Section> > Get()
        {
            var sections = await _repository.Get();

            return(sections);
        }
Exemplo n.º 3
0
        public EntityClient GetByID(int FK_ClientID)
        {
            var objRepository = new RepositoryClient();

            return(objRepository.Get(FK_ClientID));
        }