コード例 #1
0
 public IEnumerable <Departament> GetAll()
 {
     return(_repository.GetAll());
 }
コード例 #2
0
        public ActionResponse <IQueryable <DepartamentDto> > GetAll(params Enums.Status[] statuses)
        {
            var response = _departamentRepository.GetAll(statuses);

            return(response);
        }
コード例 #3
0
        public IEnumerable <DbDepartament> GetDepartaments()
        {
            var departaments = _departamentRepository.GetAll();

            return(departaments);
        }