public PostsController(IPostHttpServices postServices, IProfessorHttpServices professorServices, IAuthorizationService authService, UserManager <IdentityUser> post)
 {
     _postServices = postServices;
     _authService  = authService;
     _post         = post;
 }
 public ProfessorsController(IProfessorHttpServices professorServices, IAuthorizationService authService, UserManager <IdentityUser> professor)
 {
     _professorServices = professorServices;
     _authService       = authService;
     _professor         = professor;
 }