Api.AppointmentsController.Get C# (CSharp) Метод

Get() приватный Метод

private Get ( ) : IHttpActionResult
Результат IHttpActionResult
        public IHttpActionResult Get()
        {
            return this.Ok(new []
            {
                new Appointment(new DateTime(2015, 11, 20), "Meet with Fabrikam"),
                new Appointment(new DateTime(2015, 11, 3), "Follow up on deal with Contoso")
            });
        }
AppointmentsController