Exemplo n.º 1
0
        public string ChangeStatus(string id, string status)
        {
            var LeaveTypeDAC = new UserTypeDAC();

            return(LeaveTypeDAC.ChangeStatus(id, status));
        }
Exemplo n.º 2
0
        public List <History_UserTypeEntity> GetHistoryUserTypeDetailsByID(int ID)
        {
            var UserTypeDAC = new UserTypeDAC();

            return(UserTypeDAC.GetHistoryUserTypeDetailsByID(ID));
        }
Exemplo n.º 3
0
        public int AddUserType(UserTypeEntity _uesrtype)
        {
            var UserTypeDAC = new UserTypeDAC();

            return(UserTypeDAC.AddUserType(_uesrtype));
        }
Exemplo n.º 4
0
        public UserType GetMaxUserTypeIDDetials()
        {
            var UserTypeDAC = new UserTypeDAC();

            return(UserTypeDAC.GetMaxUserTypeIDDetials());
        }
Exemplo n.º 5
0
        public int GetMaxUserTypeID()
        {
            var UserTypeDAC = new UserTypeDAC();

            return(UserTypeDAC.GetMaxUserTypeIDDetials().UsT_UserTypeID);
        }
Exemplo n.º 6
0
        public List <UserTypeEntity> SelectUserType()
        {
            var UserTypeDAC = new UserTypeDAC();

            return(UserTypeDAC.SelectUserType());
        }
Exemplo n.º 7
0
        public UserTypeEntity GetUserTypeDetailByID(int orgID)
        {
            var UserTypeDAC = new UserTypeDAC();

            return(UserTypeDAC.GetUserTypeDetailByID(orgID));
        }
Exemplo n.º 8
0
        public List <UserTypeEntity> GetUserTypeDetail(int acntID, string RoleId)
        {
            var UserTypeDAC = new UserTypeDAC();

            return(UserTypeDAC.GetUserTypeDetail(acntID, RoleId));
        }
Exemplo n.º 9
0
        public int DeleteUserTypeDetail(int ID)
        {
            var UserTypeDAC = new UserTypeDAC();

            return(UserTypeDAC.DeleteUserTypeDetail(ID));
        }
Exemplo n.º 10
0
        public int UpdateUserTypeDetail(UserTypeEntity _uesrtype)
        {
            var UserTypeDAC = new UserTypeDAC();

            return(UserTypeDAC.UpdateUserTypeDetail(_uesrtype));
        }