// test constructor
 public StaffController(IStaffOps service)
 {
     this.service = service;
 }
 // default constructor
 public StaffController()
 {
     service = POS.Configuration.staffOps;
 }