public async Task <IHttpActionResult> GetAllAssignment()
 {
     logger.Info(DateTime.Now + ":" + "Inside the GetAllAssignment IHttpActionResult in the Assignments Controller");
     return(Ok(await _assignment.GetAssignments()));
 }