public RoleService(LyraContext context, IMapper mapper) : base(context, mapper)
 {
 }
Example #2
0
 public TrackRecommendationService(LyraContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public GenreService(LyraContext context, IMapper mapper) : base(context, mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #4
0
 public override async Task <TransactionBlock> MainProcAsync(DagSystem sys, SendTransferBlock send, LyraContext context)
 {
     return(await ChangeStateAsync(sys, send) ?? await GetBlocksAsync(sys, send));
 }
Example #5
0
 public static void Init(LyraContext context)
 {
     context.Database.Migrate();
 }
Example #6
0
 public BaseService(LyraContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #7
0
 public AnalyticsService(LyraContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public PlaylistService(LyraContext context, IMapper mapper) : base(context, mapper)
 {
     _context = context;
     _mapper  = mapper;
 }