Skip to content

Instantly share code, notes, and snippets.

@xximjasonxx
Last active November 23, 2020 15:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xximjasonxx/c8231dc04bd46899dfaa37b2d2fb8ed2 to your computer and use it in GitHub Desktop.
Save xximjasonxx/c8231dc04bd46899dfaa37b2d2fb8ed2 to your computer and use it in GitHub Desktop.
service.cs
public class ContextService : IContextReaderService, IContextWriterService
{
public string Username { get; set; }
}
public interface IContextReaderService
{
string Username { get; }
}
public interface IContextWriterService
{
string Username { set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment