Esempio n. 1
0
 public ResponseMessageWrap <int> DeleteById(long id)
 {
     return(new ResponseMessageWrap <int>
     {
         Body = UserPopedomService.DeleteById(id)
     });
 }
Esempio n. 2
0
 public ResponseMessageWrap <int> Update([FromBody] UserPopedom userPopedom)
 {
     return(new ResponseMessageWrap <int>
     {
         Body = UserPopedomService.Update(userPopedom)
     });
 }
Esempio n. 3
0
 public UserPopedomController(UserPopedomService userPopedomService, IUserPopedomRepository userPopedomRepository)
 {
     UserPopedomService    = userPopedomService;
     UserPopedomRepository = userPopedomRepository;
 }