Пример #1
0
 public ProfileController(ICRUD <User> users_crud, IServiceProvider provider, ProfilesDAL dal, ILogger <ProfileController> logger)
 {
     _provider   = provider;
     _dal        = dal;
     _logger     = logger;
     _users_crud = users_crud;
 }
Пример #2
0
        /// <summary>
        /// Inserta un elemento en la base de datos. (Capa de Negocio)
        /// </summary>
        /// <param name=""></param>
        public static bool InsertProfile(Guid UserId, string PropertyNames, string PropertyValuesString, byte[] PropertyValuesBinary, DateTime LastUpdatedDate)
        {
            ProfilesDAL profileDAL = null;
            bool        bResult    = false;

            profileDAL = new ProfilesDAL();
            try
            {
                try
                {
                    profileDAL.Insert(UserId, PropertyNames, PropertyValuesString, PropertyValuesBinary, LastUpdatedDate, CommonENT.MYCTSDBSECURITY_CONNECTION);
                }
                catch (Exception ex)
                {
                    new EventsManager.EventsManager(ex, EventsManager.EventsManager.OrigenError.BaseDeDatos);
                    profileDAL.Insert(UserId, PropertyNames, PropertyValuesString, PropertyValuesBinary, LastUpdatedDate, CommonENT.MYCTSDBSECURITYBACKUP_CONNECTION);
                }

                bResult = true;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                profileDAL = null;
            }
            return(bResult);
        }
Пример #3
0
        /// <summary>
        /// Obtiene todos los elementos de la tabla (Capa de Negocio)
        /// </summary>
        /// <param name=''></param>
        public static List <Profile> GetAllProfile()
        {
            ProfilesDAL    profileDAL  = null;
            List <Profile> listProfile = null;

            profileDAL = new ProfilesDAL();
            try
            {
                try
                {
                    listProfile = profileDAL.SelectAll(CommonENT.MYCTSDBSECURITY_CONNECTION);
                }
                catch (Exception ex)
                {
                    new EventsManager.EventsManager(ex, EventsManager.EventsManager.OrigenError.BaseDeDatos);
                    listProfile = profileDAL.SelectAll(CommonENT.MYCTSDBSECURITYBACKUP_CONNECTION);
                }
            }
            catch (Exception ex)
            {
                listProfile = null;
                throw ex;
            }
            finally
            {
                profileDAL = null;
            }
            return(listProfile);
        }
Пример #4
0
        /// <summary>
        /// Obtiene un elemento utilizando la identidad enviada como parámetro (Capa de Negocio)
        /// </summary>
        /// <param name=''></param>
        public static Profile GetProfile(Guid UserId)
        {
            ProfilesDAL profileDAL = null;
            Profile     profile    = null;

            profileDAL = new ProfilesDAL();
            try
            {
                try
                {
                    profile = profileDAL.Select(UserId, CommonENT.MYCTSDBSECURITY_CONNECTION);
                }
                catch (Exception ex)
                {
                    new EventsManager.EventsManager(ex, EventsManager.EventsManager.OrigenError.BaseDeDatos);
                    profile = profileDAL.Select(UserId, CommonENT.MYCTSDBSECURITYBACKUP_CONNECTION);
                }
            }
            catch (Exception ex)
            {
                profile = null;
                throw ex;
            }
            finally
            {
                profileDAL = null;
            }
            return(profile);
        }
Пример #5
0
        /// <summary>
        /// Borrado de un elemento de la base de datos (Capa de Negocio).
        /// </summary>
        /// <param name=""></param>
        public static bool DeleteProfile(Guid UserId)
        {
            ProfilesDAL profileDAL = null;
            bool        bResult    = false;

            profileDAL = new ProfilesDAL();
            try
            {
                try
                {
                    profileDAL.Delete(UserId, CommonENT.MYCTSDBSECURITY_CONNECTION);
                }
                catch (Exception ex)
                {
                    new EventsManager.EventsManager(ex, EventsManager.EventsManager.OrigenError.BaseDeDatos);
                    profileDAL.Delete(UserId, CommonENT.MYCTSDBSECURITYBACKUP_CONNECTION);
                }

                bResult = true;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                profileDAL = null;
            }
            return(bResult);
        }
Пример #6
0
 public AuthController(IServiceProvider provider, ProfilesDAL profileDAL, IPermissionsDAL permissionsDAL, RefreshTokenDAL refreshTokenDAL, ILogger <AuthController> logger)
 {
     _provider        = provider;
     _profileDAL      = profileDAL;
     _permissionsDAL  = permissionsDAL;
     _refreshTokenDAL = refreshTokenDAL;
     _logger          = logger;
 }