Ejemplo n.º 1
0
        private Response GetApplications(dynamic args)
        {
            var apps = Async.Execute(() => Applications.GetApplications());

            var response = (Response)JsonConvert.SerializeObject(apps);

            response.ContentType = ResponseContentType;

            return(response);
        }
Ejemplo n.º 2
0
    public List <Application> GetApplications()
    {
        Applications ApplicationManager = new Applications();

        return(ApplicationManager.GetApplications());
    }