public LocationsController(UniMeetUpServerContext context, IUmuRepository repo)
 {
     _context       = context;
     _umuRepository = repo;
 }
 public ChatMessagesController(UniMeetUpServerContext context, IUmuRepository repo)
 {
     _context       = context;
     _umuRepository = repo;
 }
 public WaypointsController(UniMeetUpServerContext context, IUmuRepository repository)
 {
     _context       = context;
     _umuRepository = repository;
 }
Example #4
0
 public UsersController(UniMeetUpServerContext context, IUmuRepository repo)
 {
     _umuRepository = repo;
     _context       = context;
 }
 public GroupsController(UniMeetUpServerContext context, IUmuRepository umuRepo)
 {
     _umuRepository = umuRepo;
     _context       = context;
 }
Example #6
0
 public FileMessagesController(UniMeetUpServerContext context, IUmuRepository umu)
 {
     _context       = context;
     _umuRepository = umu;
 }