Ejemplo n.º 1
0
        public ActionResult Index()
        {
            Account account = Session["account"] as Account;

            FinancialPlatformEntities pe = new FinancialPlatformEntities();
            var result = pe.Projects.Select(x => new { x.ID, x.Name, x.NeededLevel, x.PublishTime, x.TotalAmount }).Where(y => y.NeededLevel == account.AccountLevel).ToList();
            Projects projects = new Projects();
            projects.Level = account.AccountLevel;

            List<Project> projectlist = new List<Project>();
            foreach (var r in result)
            {
                Project p = new Project()
                {
                    ID = r.ID,
                    Name = r.Name,
                    NeededLevel = r.NeededLevel,
                    PublishTime = r.PublishTime,
                    TotalAmount = r.TotalAmount
                };

                projectlist.Add(p);
            }

            projects.ProjectList = projectlist;

            return View(projects);
        }
Ejemplo n.º 2
0
        public ActionResult AccountProfile()
        {
            FinancialPlatformEntities pe = new FinancialPlatformEntities();


            Account account =  Session["account"] as Account;
            
            return View(account);
        }
Ejemplo n.º 3
0
        public ActionResult Register(string email, string password, string name, string referenceCode)
        {
            Account account = new Account();
            account.Code = referenceCode;
            account.Email = email;
            account.Name = name;
            account.Password = password;
            account.AccountLevel = 0;

            FinancialPlatformEntities pe = new FinancialPlatformEntities();
            pe.Accounts.Add(account);
            pe.SaveChanges();

            Session["account"] = account;

            return RedirectToAction("AccountProfile", "Account", null); 
            
        }
Ejemplo n.º 4
0
        public ActionResult Login(string email, string password)
        {
            FinancialPlatformEntities pe = new FinancialPlatformEntities();

            var result = pe.Accounts.Select(x => new { x.ID, x.Name, x.Email, x.Password, x.AccountLevel, x.Code }).Where(y => y.Email == email && y.Password == password).ToList();

            if (result!= null && result.Count == 1)
            {
                Account account = new Account() { ID = result[0].ID, 
                    Name = result[0].Name, 
                    Password = result[0].Password, 
                    Email = result[0].Email,
                   AccountLevel = result[0].AccountLevel,
                 Code = result[0].Code};

                Session["account"] = account;
                return RedirectToAction("AccountProfile", "Account", null); 
            }
            else
            {
                return View();
            }
        }