- C# in Depth, Fourth Edition by Jon Skeet (Book) Manning
- Programming C# 8.0: Build Cloud, Web, and Desktop Applications by Ian Griffiths (Book) Amazon
- C# 9 and .NET 5 – Modern Cross-Platform Development by Mark J. Price (Book) Amazon
- Threading in C# by Joseph Albahari (Book, website) WebSite Pdf Book
- C# 8.0 in a Nutshell: The Definitive Reference, 1st Edition by by Joseph Albahari (Book) Amazon
- Concurrency in C# Cookbook: Asynchronous, Parallel, and Multithreaded Programming, 2nd Edition by Stephen Cleary Book [Amazon](https://www.amazon.com/Concurrency-C
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 IConfigureNewTenants | |
| { | |
| void ConfigureNewTenants(MultitenantContainer multiTenantContainer, int id, Action<ContainerBuilder> action); | |
| } | |
| public interface ITenantProvider | |
| { | |
| IEnumerable<int> GetNewTenantsToAddIds(); | |
| } | |