public void Update(FulfillmentStatus item)
 {
     throw new NotSupportedException("Update is not supported in this repository");
 }
        public void GivenAFulfillmentStatus_WhenRemove_ThenThrowException()
        {
            var expected = new FulfillmentStatus { Id = 1, Name = "New" };

            Target.ExpectException<NotSupportedException>(() => Target.Remove(expected));
        }