LCOV - code coverage report | ||||||||||||||||||
|
||||||||||||||||||
Line data Source code 1 : using cdmdotnet.AutoMapper; 2 : 3 : namespace Cqrs.Sql.DataStores 4 : { 5 : public static class Converters 6 0 : { 7 0 : public static T ConvertTo<T>(object value) 8 : where T : new() 9 : { 10 : var results = new AutomapHelper().Automap<object, T>(value); 11 : return results; 12 : } 13 : } 14 : } |
Generated by: LCOV version 1.10 |