//to dodac przy tworzeniu uzytkownika
        public string AddToRole()
        {
            IdentityManager im = new IdentityManager();

            im.AddUserToRoleByUserEmail("*****@*****.**", "Employer");
            im.AddUserToRoleByUserEmail("*****@*****.**", "User");
            return("RolesPrzydzieloned");
        }