Exemplo n.º 1
0
 public int EditUserParam(UserParamDto dto)
 {
     return(Edit(UserParamDtoMapper.To(dto)));
 }
Exemplo n.º 2
0
 public IList <UserParamDto> GetAllUserParams()
 {
     return(UserParamDtoMapper.From(GetAll()));
 }
Exemplo n.º 3
0
 public int AddUserParam(UserParamDto dto)
 {
     return(Add(UserParamDtoMapper.To(dto)));
 }
Exemplo n.º 4
0
 public UserParamDto GetUserParam(long id)
 {
     return(UserParamDtoMapper.From(Get(id)));
 }