public List <ProductBsDTO> Get()
 {
     Console.WriteLine("This is the END POINT for Products");
     return(_productBS.GetAllProduct().Result);
 }
 public List <ProductBsDTO> GetAll()
 {
     Log.Logger.Information("Client trying to Products list");
     return(_productDB.GetAllProduct().Result);
 }