public List <DateTime> GetDates(string machineName, DateTime startDate, DateTime endDate)
        {
            var action = new GetMetricsAction(dbContext);

            return(action.GetDates(machineName, startDate, endDate));
        }
        public List <float> GetPhysicalDisk(string machineName)
        {
            var action = new GetMetricsAction(dbContext);

            return(action.GetPhysicalDisk(machineName));
        }
        public List <float> GetPhysicalDisk(string machineName, DateTime startDate, DateTime endDate)
        {
            var action = new GetMetricsAction(dbContext);

            return(action.GetPhysicalDisk(machineName, startDate, endDate));
        }
        public List <float> GetProcessor(string machineName)
        {
            var action = new GetMetricsAction(dbContext);

            return(action.GetProcessor(machineName));
        }