Infrastructure.NorthwindContext.GetNorthwindContext C# (CSharp) Method

GetNorthwindContext() public static method

public static GetNorthwindContext ( ) : NorthwindContext
return NorthwindContext
        public static NorthwindContext GetNorthwindContext()
        {
            _northwindContext = (_northwindContext ?? new NorthwindContext());
            return _northwindContext;
        }
        #endregion

Usage Example

Example #1
0
 public ShipperRepository()
 {
     _context = NorthwindContext.GetNorthwindContext();
 }
All Usage Examples Of Infrastructure.NorthwindContext::GetNorthwindContext