(function () { "use strict"; angular .module("app.models") .factory("appModels.queryParams", queryParamsModels); function queryParamsModels() { return { ApprovalAssetsFilter: ApprovalAssetsFilter, ApprovalServicesFilter: ApprovalServicesFilter, ApprovalMomentsFilter: ApprovalMomentsFilter }; function ApprovalAssetsFilter() { this.pageNumber = 1; this.pageSize = 10; this.startDate = null; this.endDate = null; this.searchQuery = null; this.order = null; this.locationId = null; this.careProviderId = null; } function ApprovalServicesFilter() { this.pageNumber = 1; this.pageSize = 10; this.startDate = null; this.endDate = null; this.searchQuery = null; this.order = null; this.status = null; this.destinationId = null; this.careProviderId = null; } function ApprovalMomentsFilter() { this.pageNumber = 1; this.pageSize = 10; this.startDate = null; this.endDate = null; this.searchQuery = null; this.order = null; this.status = null; this.locationId = null; this.careProviderId = null; } } })();