Пример #1
0
        public IHttpActionResult Get()
        {
            var emps = _employeeObjBs.GetAll().OrderByDescending(x => x.DateCreated);

            return(Ok(emps));
        }
 public IHttpActionResult Get()
 {
     return(Ok(employeeObjBs.GetAll()));
 }