Пример #1
0
 /// <summary>
 /// Starts a build for the given method
 /// </summary>
 private MappingBuilder <T> ForMethod(string method)
 {
     _currentMethodProperties = new MethodProperties <T>();
     _mapping.AddMapping(method, _currentMethodProperties);
     return(this);
 }
Пример #2
0
 /// <summary>
 /// Adds a type mapping
 /// </summary>
 internal void AddMapping(string method, MethodProperties <T> properties)
 {
     _mapping[method] = properties;
 }