public Service(IAccessorFactory accessorFactory) { hogeDao = accessorFactory.Create <IHogeDao>(); }
/// <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) { }