public BaseRepository(ProjectManagementContext context)
 {
     _context = context;
 }
 public UserRepository(ProjectManagementContext context) : base(context)
 {
     _context = context;
 }
 public BaseRepository()
 {
     Context = DependencyResolver.Current.GetService <ProjectManagementContext>();
 }