public ResponseMessageWrap <int> DeleteById(long id)
 {
     return(new ResponseMessageWrap <int>
     {
         Body = RolePopedomService.DeleteById(id)
     });
 }
 public ResponseMessageWrap <int> Update([FromBody] RolePopedom rolePopedom)
 {
     return(new ResponseMessageWrap <int>
     {
         Body = RolePopedomService.Update(rolePopedom)
     });
 }
 public RolePopedomController(RolePopedomService rolePopedomService, IRolePopedomRepository rolePopedomRepository)
 {
     RolePopedomService    = rolePopedomService;
     RolePopedomRepository = rolePopedomRepository;
 }