Jabbot.Web.Models.Statistics.StatisticsViewModel.StatisticsViewModel C# (CSharp) Méthode

StatisticsViewModel() public méthode

public StatisticsViewModel ( long totalRequestsHandled, long totalRequestsHandledThisDay, long totalRequestsHandledThisMonth ) : System
totalRequestsHandled long
totalRequestsHandledThisDay long
totalRequestsHandledThisMonth long
Résultat System
        public StatisticsViewModel(
            long totalRequestsHandled, 
            long totalRequestsHandledThisDay, 
            long totalRequestsHandledThisMonth)
        {
            TotalRequestsHandledLifetime = totalRequestsHandled;
            TotalRequestsHandledThisDay = totalRequestsHandledThisDay;
            TotalRequestsHandledThisMonth = totalRequestsHandledThisMonth;
        }
StatisticsViewModel