Example #1
0
 public async Task <AjaxModel <List <VehicleListModel> > > VehicleList()
 {
     return(await AjaxHelper.GetDashboardAsync(m => this.domain.VehicleList(), this.dashboardDomain, this.widgetDomain));
 }
Example #2
0
 public async Task <AjaxModel <ManufacturerDetailsModel> > ManufacturerDetailsGet(int manufacturerId)
 {
     return(await AjaxHelper.GetDashboardAsync(m => this.domain.ManufacturerDetailsGet(manufacturerId), this.dashboardDomain, this.widgetDomain));
 }
 public async Task <AjaxModel <List <ProductTypeModel> > > ProductTypesGet()
 {
     return(await AjaxHelper.GetDashboardAsync(m => this.domain.ProductTypesGet(), this.dashboardDomain, this.widgetDomain));
 }
 public async Task <AjaxModel <List <MaterialColourModel> > > MaterialColoursGet()
 {
     return(await AjaxHelper.GetDashboardAsync(m => this.domain.MaterialColoursGet(), this.dashboardDomain, this.widgetDomain));
 }
 public async Task <AjaxModel <object> > Dashboard()
 {
     return(await AjaxHelper.GetDashboardAsync(this.dashboardDomain, this.widgetDomain));
 }
 public async Task <AjaxModel <List <YardModel> > > YardsGet()
 {
     return(await AjaxHelper.GetDashboardAsync(m => this.domain.YardsGet(), this.dashboardDomain, this.widgetDomain));
 }