示例#1
0
        public void Edit(int subjectId, [FromBody] Extems.Academic.Entities.Subject subject)
        {
            if (subject == null)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.MethodNotAllowed));
            }

            try
            {
                this.SubjectRepository.Update(subject, subjectId);
            }
            catch (UnauthorizedException)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.Forbidden));
            }
            catch (DataAccessException ex)
            {
                throw new HttpResponseException(new HttpResponseMessage
                {
                    Content    = new StringContent(ex.Message),
                    StatusCode = HttpStatusCode.InternalServerError
                });
            }
#if !DEBUG
            catch
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.InternalServerError));
            }
#endif
        }
示例#2
0
 public void Last()
 {
     Extems.Academic.Entities.Subject subject = Fixture().GetLast();
     Assert.NotNull(subject);
 }
示例#3
0
 public void Previous()
 {
     Extems.Academic.Entities.Subject subject = Fixture().GetPrevious(0);
     Assert.NotNull(subject);
 }