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

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

            return(action.GetMemory(machineName));
        }