public ServiceMaterialsInventoryController()
 {
     m_unitOfWork = Scout.Core.Data.GetUnitOfWork();
     m_repo       = Scout.Core.Data.GetRepository(m_unitOfWork);
 }
 public MaterialsConsumableInventory(IRepository repository)
 {
     m_repository = repository;
 }
 public ServiceMaterialsInventoryController(IUnitOfWork unitOfWork, IRepository repo)
 {
     m_unitOfWork = unitOfWork;
     m_repo       = repo;
 }