Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/27/11 17:13:54 (13 years ago)
Author:
ascheibe
Message:

#1648 started implementing the web service

Location:
branches/ClientUserManagement
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/ClientUserManagement

    • Property svn:ignore
      •  

        old new  
        22*.testsettings
        33HeuristicLab.Services.Access.vsmdi
         4TestResults
  • branches/ClientUserManagement/HeuristicLab.Services.Access/3.3/Convert.cs

    r6825 r6840  
    2626
    2727
    28 namespace HeuristicLab.Services.ClientManagement {
     28namespace HeuristicLab.Services.Access {
    2929  public static class Convert {
    3030
     
    9595        Id = source.Id,
    9696        Name = source.Name,
    97 
    9897      };
    9998    }
     
    301300    }
    302301    #endregion
     302
     303    #region ClientGroupMapping
     304    public static DT.ClientGroupMapping ToDto(DA.ResourceResourceGroup c) {
     305      return new DT.ClientGroupMapping() {
     306        Child = c.ResourceId, Parent = c.ResourceGroupId
     307      };
     308    }
     309    #endregion
     310
     311
    303312  }
    304313}
Note: See TracChangeset for help on using the changeset viewer.