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
public interface IUser | |
{ | |
string Username { get; } | |
// rest of the properties | |
} | |
public interface IUserFactory | |
{ | |
IUser CreateUser(UserState userState); | |
} |
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.Collections.Generic; | |
using System.Linq; | |
using Microsoft.Extensions.DependencyInjection; | |
public static class ExampleExtensions | |
{ | |
public static IServiceCollection AddExampleService(this IServiceCollection services) | |
{ |
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
[diff] | |
tool = meld | |
guitool = meld | |
[difftool] | |
prompt = true | |
[merge] | |
tool = meld | |
guitool = meld | |
[mergetool] | |
prompt = true |