Ejemplo n.º 1
0
        public bool DeleteUser(DTO_TB_USERS oUser)
        {
            var bRes = false;

            try
            {
                base.DeleteDto <DTO_TB_USERS, TB_USERS>(userRepository, oUser);
                bRes = true;
            }
            catch
            {
            }
            return(bRes);
        }
Ejemplo n.º 2
0
 public DTO_TB_USERS AddUser(DTO_TB_USERS oUser)
 {
     return(base.AddDto <DTO_TB_USERS, TB_USERS>(userRepository, oUser));
 }
Ejemplo n.º 3
0
 public bool DeleteUser(DTO_TB_USERS oUser)
 {
     return(oService.DeleteUser(oUser));
 }
Ejemplo n.º 4
0
 public bool UpdateUser(DTO_TB_USERS oUser)
 {
     return(oService.UpdateUser(oUser));
 }
Ejemplo n.º 5
0
 public DTO_TB_USERS AddUser(DTO_TB_USERS oUser)
 {
     return(oService.AddUser(oUser));
 }