public FishInfoesController(CommunityFishingContext context)
 {
     _context = context;
 }
 public UserfishController(CommunityFishingContext context, UserManager <IdentityUser> userManager, IHostingEnvironment webroot)
 {
     _context     = context;
     _userManager = userManager;
     _webroot     = webroot;
 }
 public UserProfilesController(CommunityFishingContext context, UserManager <IdentityUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }
		public PublicBlogsController(CommunityFishingContext context)
		{
			_context = context;
		}