This file contains hidden or 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
| using System; | |
| using ServiceStack; | |
| using System.Runtime.Remoting; | |
| using NUnit.Framework; | |
| namespace MyApp.Tests | |
| { | |
| public class AppHost : AppSelfHostBase | |
| { | |
| public AppHost(): base("My ServiceStack Service", typeof(AppHost).Assembly) |
This file contains hidden or 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
| using System; | |
| using System.Linq; | |
| using ServiceStack; | |
| using System.Data; | |
| using System.Collections.Generic; | |
| using ServiceStack.DataAnnotations; | |
| using ServiceStack.OrmLite; | |
| namespace MyApp.Tests | |
| { |
OlderNewer