Camelcase on answer from restservice
This commit is contained in:
@ -1,3 +1,4 @@
|
||||
using AutoMapper;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
@ -6,6 +7,7 @@ using System.Web.Http;
|
||||
using System.Web.Mvc;
|
||||
using System.Web.Optimization;
|
||||
using System.Web.Routing;
|
||||
using Vidly.App_Start;
|
||||
|
||||
namespace Vidly
|
||||
{
|
||||
@ -13,6 +15,7 @@ namespace Vidly
|
||||
{
|
||||
protected void Application_Start()
|
||||
{
|
||||
Mapper.Initialize(c => c.AddProfile<MappingProfile>());
|
||||
GlobalConfiguration.Configure(WebApiConfig.Register);
|
||||
AreaRegistration.RegisterAllAreas();
|
||||
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
|
||||
|
||||
Reference in New Issue
Block a user