IUserStatisticAppService renamed to IDemoStatisticAppService

pull/1472/head
Yunus Emre Kalkan 6 years ago
parent 8926b4379e
commit 2723df5d65

@ -7,7 +7,7 @@ using Volo.Abp.Application.Services;
namespace DashboardDemo
{
public class UserStatisticAppService : ApplicationService, IUserStatisticAppService
public class DemoStatisticAppService : ApplicationService, IDemoStatisticAppService
{
public async Task<NewUserPerDayStatisticDto> GetNewUserPerDayStatistic()
{

@ -6,7 +6,7 @@ using Volo.Abp.Application.Services;
namespace DashboardDemo
{
public interface IUserStatisticAppService : IApplicationService
public interface IDemoStatisticAppService : IApplicationService
{
Task<NewUserPerDayStatisticDto> GetNewUserPerDayStatistic();
}

@ -6,7 +6,7 @@
var createChart = function () {
dashboardDemo.userStatistic.getNewUserPerDayStatistic().then(function (result) {
dashboardDemo.demoStatistic.getNewUserPerDayStatistic().then(function (result) {
var chart = new Chart($container.find('#UserStatistics'), {
type: 'bar',

Loading…
Cancel
Save