Align .editorconfig files Move Controller logic to DMO classes GlobalVars.AppSettings = Models.AppSettings.GetFromConfigurationManager(); Question EditorConfig Project level editorconfig Format White Spaces AppSetting when EnvironmentVariable not set Corrective Actions Tests Schedule Actions Tests DMO Tests Controller Tests Get ready to use VSCode IDE
17 lines
517 B
C#
17 lines
517 B
C#
#if !NET8
|
|
|
|
using Microsoft.AspNet.Identity.EntityFramework;
|
|
|
|
namespace Fab2ApprovalSystem.Models {
|
|
// You can add profile data for the user by adding more properties to your ApplicationUser class, please visit http://go.microsoft.com/fwlink/?LinkID=317594 to learn more.
|
|
public class ApplicationUser : IdentityUser {
|
|
}
|
|
|
|
public class ApplicationDbContext : IdentityDbContext<ApplicationUser> {
|
|
public ApplicationDbContext()
|
|
: base("DefaultConnection") {
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif |