Ejemplo n.º 1
0
        public bool Delete(string login, string password, int ProdutoId)
        {
            LogBLL log = new LogBLL();
            bool valid = false;

            try
            {
                User u = new User();
                u.Login = login;
                u.Password = password;

                u = Authentication.Login(u);
                log.log.UserId = u.UserId;

                Authentication.HaveAccess(u);
                valid = controller.DeleteConfirmed(ProdutoId);
            }
            catch (Exception e)
            {
                log.log.Exception = e.Message;
                throw e;
            }
            finally
            {
                log.Create();
            }

            return valid;
        }
Ejemplo n.º 2
0
        public Categoria Create(string login, string password, Categoria Categoria)
        {
            LogBLL log = new LogBLL();

            try
            {
                User u = new User();
                u.Login = login;
                u.Password = password;

                u = Authentication.Login(u);
                log.log.UserId = u.UserId;

                Authentication.HaveAccess(u);
                Categoria = controller.Create(Categoria);
            }
            catch (Exception e)
            {
                log.log.Exception = e.Message;
                throw e;
            }
            finally
            {
                log.Create();
            }

            return Categoria;
        }
Ejemplo n.º 3
0
        public Produto Create(string login, string password, Produto Produto)
        {
            LogBLL log = new LogBLL();

            try
            {
                User u = new User();
                u.Login = login;
                u.Password = password;

                u = Authentication.Login(u);
                log.log.UserId = u.UserId;

                Authentication.HaveAccess(u);

                Produto = controller.Create(Produto);
            }
            catch (Exception e)
            {
                log.log.Exception = e.Message;
                throw e;
            }
            finally
            {
                log.Create();
            }

            return Produto;
        }
Ejemplo n.º 4
0
        public bool CreateUser(int UserProfile, string Name, string Login, string Password)
        {
            User u = new User();
            u.Name = Name;
            u.Login = Login;
            u.Password = Password;
            u.DateCreated = DateTime.Now;
            u.DateLastLogin = null;
            u.UserProfileId = UserProfile;

            return sys.CreateUser(u);
        }
Ejemplo n.º 5
0
        public Produto[] ListByUserPreferences(string login, string password)
        {
            LogBLL log = new LogBLL();
            Produto[] list;

            try
            {
                User u = new User();
                u.Login = login;
                u.Password = password;

                u = Authentication.Login(u);
                log.log.UserId = u.UserId;

                Authentication.HaveAccess(u);

                list = controller.ListByUserPreferences(u.UserId);
            }
            catch (Exception e)
            {
                log.log.Exception = e.Message;
                throw e;
            }
            finally
            {
                log.Create();
            }

            return list;
        }
Ejemplo n.º 6
0
        public bool UpdateAndroidUserPreferences(string login, string password, int[] interesses)
        {
            LogBLL log = new LogBLL();
            bool valid = false;

            try
            {
                User u = new User();
                u.Login = login;
                u.Password = password;

                u = Authentication.Login(u);
                log.log.UserId = u.UserId;

                Authentication.HaveAccess(u);
                valid = controller.UpdateAndroidUserPreferences(u.UserId, interesses);
            }
            catch (Exception e)
            {
                log.log.Exception = e.Message;
                throw e;
            }
            finally
            {
                log.Create();
            }

            return valid;
        }
Ejemplo n.º 7
0
        public bool Edit(string login, string password, Empresa Empresa)
        {
            LogBLL log = new LogBLL();
            bool valid = false;

            try
            {
                User u = new User();
                u.Login = login;
                u.Password = password;

                u = Authentication.Login(u);
                log.log.UserId = u.UserId;

                Authentication.HaveAccess(u);

                valid = controller.Edit(Empresa);
            }
            catch (Exception e)
            {
                log.log.Exception = e.Message;
                throw e;
            }
            finally
            {
                log.Create();
            }

            return valid;
        }
Ejemplo n.º 8
0
        public Empresa[] Index(string login, string password)
        {
            LogBLL log = new LogBLL();
            Empresa[] list;

            try
            {
                User u = new User();
                u.Login = login;
                u.Password = password;

                u = Authentication.Login(u);
                log.log.UserId = u.UserId;

                Authentication.HaveAccess(u);

                list = controller.Index();
            }
            catch (Exception e)
            {
                log.log.Exception = e.Message;
                throw e;
            }
            finally
            {
                log.Create();
            }

            return list;
        }
Ejemplo n.º 9
0
        public Empresa Find(string login, string password, int EmpresaId)
        {
            LogBLL log = new LogBLL();
            Empresa Empresa = null;

            try
            {
                User u = new User();
                u.Login = login;
                u.Password = password;

                u = Authentication.Login(u);
                log.log.UserId = u.UserId;

                Authentication.HaveAccess(u);

                Empresa = controller.Find(EmpresaId);
            }
            catch (Exception e)
            {
                log.log.Exception = e.Message;
                throw e;
            }
            finally
            {
                log.Create();
            }

            return Empresa;
        }
Ejemplo n.º 10
0
 public bool CreateUser(User user)
 {
     user.DateCreated = DateTime.Now;
     db.Users.Add(user);
     return db.SaveChanges() > 0;
 }