예제 #1
0
        public ActionResult <IEnumerable <Departments> > GetDepartments()
        {
            var departments = _staticDataRepository.GetDepartments().ToList();

            return(departments);
        }