Skip to content

Instantly share code, notes, and snippets.

@CoreProgramm
Created February 1, 2020 15:58
Show Gist options
  • Save CoreProgramm/0d4e1af2ca41d92f575886dc164cf283 to your computer and use it in GitHub Desktop.
Save CoreProgramm/0d4e1af2ca41d92f575886dc164cf283 to your computer and use it in GitHub Desktop.
Difference between AddSingleton vs AddScoped vs AddTransient in asp.net core
public interface IMobileService
{
IEnumerable<Mobile> GetAll();
Mobile Add(Mobile mobile);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment