Exemple #1
0
        private Response GetApplications(dynamic args)
        {
            var apps = Async.Execute(() => Applications.GetApplications());

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

            response.ContentType = ResponseContentType;

            return(response);
        }
Exemple #2
0
    public List <Application> GetApplications()
    {
        Applications ApplicationManager = new Applications();

        return(ApplicationManager.GetApplications());
    }