Beispiel #1
0
 public Service(IAccessorFactory accessorFactory)
 {
     hogeDao = accessorFactory.Create <IHogeDao>();
 }
Beispiel #2
0
 /// <summary>
 /// Constructs a new NdArray over a pre-allocated array
 /// </summary>
 /// <param name="shape">The shape of the NdArray</param>
 public NdArray(Shape shape)
     : this(AccessorFactory.Create(shape.Length), shape)
 {
 }