This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @var <% $3.replace("'';",'string').replace('0;','int') %> | |
* @text('label' => '<% $1.replace("$","").replace('_', ' ').toSentenceCase() %>') | |
*/ | |
$row |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[TestMethod] | |
public void Can_create_controllers() | |
{ | |
var kernel = new StandardKernel(); | |
SiteResolver.RegisterComponents(kernel); | |
typeof(AccountController) | |
.Assembly | |
.GetTypes() | |
.Where(t => typeof(Controller).IsAssignableFrom(t)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* DynamicSiteMapProvider | |
* | |
* Created by Simon Harriyott http://harriyott.com | |
* More details at http://harriyott.com/2007/03/adding-dynamic-nodes-to-aspnet-site | |
* | |
* DynamicSiteMapProvider is a class that adds new | |
* items to a site map at runtime. The filename of | |
* the existing xml sitemap is set in the Web.Config | |
* file. This file is loaded, and extra nodes can |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class RouteNames | |
{ | |
public const string ListKittens = "api/kittens/list"; | |
public const string FeedKitten = "api/kitten/{kittenId}/feed"; | |
public const string AdoptKitten = "api/kitten/{kittenId}/adopt"; | |
public const string RenameKitten = "api/kitten/{kittenId}/rename/{newName}"; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class KittenContoller: Controller | |
{ | |
[Route(RouteNames.KittenList)] | |
public ActionResult Index() | |
{ | |
return View(); | |
} | |
[Route(RouteNames.FeedKitten)] | |
public ActionResult Feed(int kittenId) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class KittenContoller: Controller | |
{ | |
[Route("api/kittens/list")] | |
public ActionResult Index() | |
{ | |
return View(); | |
} | |
[Route("api/kitten/{kittenId}/feed")] | |
public ActionResult Feed(int kittenId) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<#@ template debug="false" hostspecific="false" language="C#" #> | |
<#@ assembly name="System.Core" #> | |
<#@ import namespace="System.Linq" #> | |
<#@ assembly name="$(SolutionDir)Kittens.Web\bin\Kittens.Web.dll "#> | |
<#@ output extension=".ts" #> | |
export class KittensRoutes { | |
<# | |
// Get a collection of the constants in the class | |
var constants = typeof(Kittens.Web.KittensRoutes).GetFields(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class KittenService { | |
feedKitten(kittenId: number): void { | |
const url = `api/kitten/${kittenId}/feed`; | |
this.http.post(url, {}).subscribe(); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { KittenRoutes } from './kitten-routes'; | |
export class KittenService { | |
feedKitten(kittenId: number): void { | |
const url = KittenRoutes.feedKitten(kittenId); | |
this.http.post(url, {}).subscribe(); | |
} | |
} |
OlderNewer